From commits-return-73139-archive-asf-public=cust-asf.ponee.io@airflow.apache.org Tue Oct 29 21:33:16 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 4142B1804BB for ; Tue, 29 Oct 2019 22:33:16 +0100 (CET) Received: (qmail 76134 invoked by uid 500); 29 Oct 2019 21:33:15 -0000 Mailing-List: contact commits-help@airflow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airflow.apache.org Delivered-To: mailing list commits@airflow.apache.org Received: (qmail 76125 invoked by uid 99); 29 Oct 2019 21:33:15 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 29 Oct 2019 21:33:15 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 7A65C805E6; Tue, 29 Oct 2019 21:33:15 +0000 (UTC) Date: Tue, 29 Oct 2019 21:33:15 +0000 To: "commits@airflow.apache.org" Subject: [airflow-site] branch aip-11 updated: Improve tags list (#104) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157238479545.4511.14320020285307385137@gitbox.apache.org> From: kamilbregula@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: airflow-site X-Git-Refname: refs/heads/aip-11 X-Git-Reftype: branch X-Git-Oldrev: b73cdbf254f77aa5e2f9550b02d38cb411456ba9 X-Git-Newrev: 4d8b46d7078c8dcad1dc25394994d345f665c69b X-Git-Rev: 4d8b46d7078c8dcad1dc25394994d345f665c69b X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. kamilbregula pushed a commit to branch aip-11 in repository https://gitbox.apache.org/repos/asf/airflow-site.git The following commit(s) were added to refs/heads/aip-11 by this push: new 4d8b46d Improve tags list (#104) 4d8b46d is described below commit 4d8b46d7078c8dcad1dc25394994d345f665c69b Author: Kamil BreguĊ‚a AuthorDate: Tue Oct 29 22:33:10 2019 +0100 Improve tags list (#104) --- landing-pages/site/assets/scss/_blog-page.scss | 10 ++++++++-- landing-pages/site/layouts/blog/content.html | 10 ++++++---- landing-pages/site/layouts/blog/list.html | 12 +++++++----- landing-pages/site/layouts/partials/boxes/blogpost.html | 10 ++++++---- landing-pages/site/layouts/taxonomy/tag.html | 14 ++++++++------ 5 files changed, 35 insertions(+), 21 deletions(-) diff --git a/landing-pages/site/assets/scss/_blog-page.scss b/landing-pages/site/assets/scss/_blog-page.scss index 09f92ba..7f3d936 100644 --- a/landing-pages/site/assets/scss/_blog-page.scss +++ b/landing-pages/site/assets/scss/_blog-page.scss @@ -33,15 +33,21 @@ } } -.all-tags-container { +.tags-container { display: flex; justify-content: center; flex-wrap: wrap; - margin: 30px 15px; + width: fit-content; + margin-top: -14px; +} + +.all-tags-container { + margin: 30px 0; } .new-entry { margin: 30px 0 20px; + &--link { @extend .bodytext__medium--cerulean-blue; font-weight: 500; diff --git a/landing-pages/site/layouts/blog/content.html b/landing-pages/site/layouts/blog/content.html index a43beb9..d587707 100644 --- a/landing-pages/site/layouts/blog/content.html +++ b/landing-pages/site/layouts/blog/content.html @@ -19,11 +19,13 @@
diff --git a/landing-pages/site/layouts/blog/list.html b/landing-pages/site/layouts/blog/list.html index c0bba46..4891c43 100644 --- a/landing-pages/site/layouts/blog/list.html +++ b/landing-pages/site/layouts/blog/list.html @@ -21,12 +21,14 @@
- All - {{ range $name, $taxonomy := .Site.Taxonomies.tags }} - {{ with $.Site.GetPage (printf "/tags/%s" $name) }} - {{ humanize $name }} +
+ All + {{ range $name, $taxonomy := .Site.Taxonomies.tags }} + {{ with $.Site.GetPage (printf "/tags/%s" $name) }} + {{ humanize $name }} + {{ end }} {{ end }} - {{ end }} +
ADD YOUR ENTRY diff --git a/landing-pages/site/layouts/partials/boxes/blogpost.html b/landing-pages/site/layouts/partials/boxes/blogpost.html index 91b1497..f59859c 100644 --- a/landing-pages/site/layouts/partials/boxes/blogpost.html +++ b/landing-pages/site/layouts/partials/boxes/blogpost.html @@ -19,11 +19,13 @@

{{ .Params.title }}

diff --git a/landing-pages/site/layouts/taxonomy/tag.html b/landing-pages/site/layouts/taxonomy/tag.html index 81e55e8..03d12ab 100644 --- a/landing-pages/site/layouts/taxonomy/tag.html +++ b/landing-pages/site/layouts/taxonomy/tag.html @@ -22,13 +22,15 @@
- All - {{ range $name, $taxonomy := .Site.Taxonomies.tags }} - {{ with $.Site.GetPage (printf "/tags/%s" $name) }} - {{ humanize $name }} +
+ All + {{ range $name, $taxonomy := .Site.Taxonomies.tags }} + {{ with $.Site.GetPage (printf "/tags/%s" $name) }} + {{ humanize $name }} + {{ end }} {{ end }} - {{ end }} +
ADD YOUR ENTRY