Skip to content

Commit 0af9ff3

Browse files
authored
ref/rebrand adjustments (#57)
* ref: adjust posts' banners to fit our branding * ref: adjust banner height for archive items * ref: remove 'featured' section * ref: temporarily disable 'Our principles' until we can refactor that properly with a better UX * ref: remove border-bottom-right-radius from navbar
1 parent 448449d commit 0af9ff3

30 files changed

Lines changed: 36 additions & 35 deletions

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.1.2

Gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ GEM
173173
zeitwerk (2.6.8)
174174

175175
PLATFORMS
176+
arm64-darwin-21
176177
universal-darwin-22
177178

178179
DEPENDENCIES

_data/navigation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ main:
44
# to be moved to the page body
55
# - title: "Categories"
66
# id: categories
7-
- title: "Our Principles"
8-
url: /principles
7+
# - title: "Our Principles"
8+
# url: /principles
99
- title: "About"
1010
url: /about
1111
- title: "Jobs"

_layouts/home.html

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,6 @@
1111
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
1212
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
1313
{% if page.modified %}<meta itemprop="dateModified" content="{{ page.modified | date: "%B %d, %Y" }}">{% endif %}
14-
15-
<section class="page__content" itemprop="text">
16-
{% if page.splash %}
17-
{% include bb_splash.html %}
18-
{% else %}
19-
{% include feature_row.html %}
20-
{% endif %}
21-
{{ content }}
22-
</section>
2314
</article>
2415
</section>
2516

_posts/2020-03-04-kubernetes-application-developer-certification-tips.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ tags: Ckad Kubernetes Certification Certified Kubernetes K8s
55
authors:
66
- Andrés Torres
77
header:
8-
teaser: /assets/images/post/1_678aknjbvxta67HJka.png
8+
teaser: /assets/images/post/kubernetes-banner.png
99
teaser_alt: Kubernetes certificate
1010
category: DevOps
1111
---
1212

13-
![](/assets/images/post/1_z6NGFcNqfSgJaIvuzaY0sA.png)
13+
![](/assets/images/post/kubernetes-banner.png)
1414

1515
I just passed the Certified Kubernetes Application Developer (CKAD) exam: [https://www.cncf.io/certification/ckad/](https://www.cncf.io/certification/ckad/)
1616

_posts/2020-07-24-building-an-ios14-widget-to-show-account-balance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ tags: Mobile iOS14 Swift Widget
55
authors:
66
- Arthur Alves
77
header:
8-
teaser: /assets/images/post/3_gYa678jAKLhagDFfA.png
8+
teaser: /assets/images/post/ios-widget-banner.png
99
teaser_alt: Account Balance Widget
1010
category: Mobile
1111
---
1212

13-
![](/assets/images/post/3_rTFabjU6GfTYxahKA.png)
13+
![](/assets/images/post/ios-widget-banner.png)
1414

1515
> ***Disclaimer**: This is merely used as proof of concept rather than a production feature, as there are security points to be taken in consideration for showing private and sensitive data for banking apps and similar applications.*
1616

_posts/2020-08-14-android-configuration-driven-ui-from-epoxy-to-compose.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: "Android: Configuration Driven UI from Epoxy to Compose"
2+
title: "Configuration Driven UI from Epoxy to Compose"
33
excerpt: "This is a story of how we came up with the solution for Configuration driven UI (a level below server-driven UI) in Android at Backbase."
44
tags: Mobile Android Jetpack Epoxy
55
authors:
66
- Hari Vignesh
77
header:
8-
teaser: /assets/images/post/2_mAYtyuuuajXGyaujaoP.png
8+
teaser: /assets/images/post/epoxy-compose-banner.png
99
teaser_alt: Kotlin
1010
category: Mobile
1111
---
1212

13-
![](/assets/images/post/2_678ajYYaik18GyxVFa.png)
13+
![](/assets/images/post/epoxy-compose-banner.png)
1414

1515
This is a story of how we came up with the solution for Configuration driven UI (a level below server-driven UI) in Android at Backbase. It’s not a super perfect system or not highly reactive as Jetpack compose, but it absolutely solves the use-case: to create a framework or library, where developers can create or replace view components via configurations.
1616

_posts/2021-06-16-android-flexible-configuration-with-deferred-resources.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
---
2-
title: "Android: Flexible configuration with Deferred Resources"
2+
title: "Flexible configuration with Deferred Resources"
33
excerpt: Deferred Resources provides flexibility beyond the standard resource-resolution approaches.
44
tags: Mobile Android Open-source Deferred-Resources
55
authors:
66
- Drew Hamilton
77
header:
8-
teaser: /assets/images/post/05_color_configuration.png
8+
teaser: /assets/images/post/deferred-resources-banner.png
99
teaser_alt: Deferred Resources
1010
category: Mobile
1111
---
1212

13+
![](/assets/images/post/deferred-resources-banner.png)
14+
1315
Our feature libraries, which include UI, have a number of varying requirements regarding
1416
configuration by our customers. (My colleague Hari wrote about one such library's requirements
1517
[here]({% post_url 2020-08-14-android-configuration-driven-ui-from-epoxy-to-compose %}).)

_posts/2021-09-10-intro-to-blockchain-react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ tags: Blockchain React
55
authors:
66
- Alexey Buistov
77
header:
8-
teaser: /assets/images/post/people.png
8+
teaser: /assets/images/post/blockchain_banner.png
99
teaser_alt: Hello, Blockchain!
1010
category: Dev
1111
---
1212

13-
![](/assets/images/post/people.png)
13+
![](/assets/images/post/blockchain_banner.png)
1414

1515

1616
This tutorial walks you through the process of creating a very minimal "Hello, world!" - style React app that reads and displays data from the Joystream blockchain. Along the way, I comment a thing or two about scaffolding React applications, JSON-RPC APIs and about the blockhain itself.

_posts/2021-12-01-the-ultimate-guide-to-slack-etiquette.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ tags: Slack Remote Work Etiquette
55
authors:
66
- Rafael Nascimento
77
header:
8-
teaser: /assets/images/post/remote_work_teaser.png
8+
teaser: /assets/images/post/slack-etiquette-banner.png
99
teaser_alt: The ultimate guide to Slack etiquette
1010
category: Remote Work
1111
---
1212

13+
![](/assets/images/post/slack-etiquette-banner.png)
14+
1315
We all know that COVID changed the world we live in today. It also changed the way most people work. Although remote work is nothing new for a lot of people, many of us had to adapt to it. Before, we could simply have a coffee with our team mates and discuss things face to face, but now messaging tools (for example [Slack](https://youtu.be/qUkYkm9bWak)) take a very important role in a "the less useless meetings the better" remote work strategy.
1416

1517
Slack is a messaging app for business that connects people to the information they need. It has several features that makes remote cooperation *"an easier, more organized way to work"* (as they promote on their website). Slack team is so kind that they even give you some [etiquette tips](https://slack.com/blog/collaboration/etiquette-tips-in-slack) of how to collaborate with kindness (I recommend the read, as I don't plan to repeat all of them here). However, I want to take this a step further.

0 commit comments

Comments
 (0)