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

+36
-35
lines changed

.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.

_posts/2022-06-08-deploying-angular-app-on-azure.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
title: "Angular: Deploy an Angular app on Azure"
2+
title: "Deploying an Angular app on Azure"
33
excerpt: "Deploy a multi-locale Angular app using Azure Blob Storage and CDN Classic"
44
tags: Frontend Angular Azure i18n
55
authors:
66
- Yash Kapila
77
- Marco Santarelli
88
header:
9-
teaser: /assets/images/post/web-azure-angular-logo.jpeg
9+
teaser: /assets/images/post/angular-azure-banner.png
1010
teaser_alt: Azure and Angular
1111
category: Frontend
1212
---
1313

14-
![](/assets/images/post/web-azure-angular-logo.jpeg)
14+
![](/assets/images/post/angular-azure-banner.png)
1515

1616
## Introduction
1717

_posts/2022-07-01-ios-mobile-testing-ease-your-life-at-work-with-fastlane.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
---
2-
title: "iOS Mobile Testing: Ease your life at work with Fastlane"
3-
excerpt: "This is the story how we use fastlane in CI pipeline for iOS"
2+
title: "Ease your life at work with Fastlane"
3+
excerpt: "A brief overview of how we use fastlane in CI pipelines for iOS"
44
tags: Mobile iOS testing
55
authors:
66
- Dilshan Fernando
77
header:
8-
teaser: /assets/images/post/ios_fastlane.png
8+
teaser: /assets/images/post/fastlane_banner.png
99
teaser_alt: Ease your life at work with Fastlane
1010
category: Software Quality Assurance
1111
---
12-
![](/assets/images/post/ios_fastlane.png)
12+
13+
![](/assets/images/post/fastlane_banner.png)
1314

1415
# As a software Tester, are you curious in finding the solutions to the below questions? (for iOS)
1516
- How to reduce test execution time by running in parallel on physical devices and simulators?

_posts/2022-11-16-android-fragment-testing.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ tags: Mobile Android testing
66
authors:
77
- Raman Koushyk
88
header:
9-
teaser: /assets/images/post/espresso-logo.png
9+
teaser: /assets/images/post/espresso-banner.png
1010
teaser_alt: Fragments
1111
category: Software Quality Assurance
1212

1313
---
1414

15+
![](/assets/images/post/espresso-banner.png)
16+
1517
## **What is Fragment testing on Android**
1618

1719

_posts/2023-05-01-shift-left-approach-to-testing.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ tags: Testing, Quality Assurance
66
authors:
77
- Anjali Goyal
88
header:
9-
teaser: /assets/images/post/shift-left1.png
9+
teaser: /assets/images/post/shift-left-banner.png
1010
teaser_alt: Quality Assistance Approach
1111
category: Software Quality Assurance
1212

1313
---
1414

15+
![](/assets/images/post/shift-left-banner.png)
16+
1517
**Shift left**” testing movement is about pushing testing towards the early stages of Software Development Life Cycle.
1618

1719
By testing **early and often**, a project can reduce the number of bugs and increase the quality of the code.

_sass/components/_archive.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
}
2323
}
2424

25-
max-height: 170px;
25+
min-height: 200px;
26+
max-height: 100%;
2627
overflow: hidden;
2728
}
2829

_sass/components/_nav.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
width: 100%;
3232
height: 100%;
3333
background: map-get($bb-palette, 'blue');
34-
border-bottom-right-radius: 100rem;
3534
z-index: -1;
3635
}
3736
}
693 Bytes
Loading
-2.19 KB
Loading
34.8 KB
Loading
26.3 KB
Loading
57.5 KB
Loading
66.4 KB
Loading
55.4 KB
Loading
99.6 KB
Loading
22.5 KB
Loading
27.3 KB
Loading
83.1 KB
Loading
42.1 KB
Loading
288 KB
Loading
34.6 KB
Loading

0 commit comments

Comments
 (0)