diff --git a/_config.yml b/_config.yml --- a/_config.yml +++ b/_config.yml @@ -161,9 +161,6 @@ values: layout: page -# Use tags index page and make tags on each post clickable -link-tags: true - collections: doc: output: true diff --git a/_layouts/post.html b/_layouts/post.html --- a/_layouts/post.html +++ b/_layouts/post.html @@ -33,19 +33,6 @@ {{ content }} - {% if page.tags.size > 0 %} -
- Tags: - {% if site.link-tags %} - {% for tag in page.tags %} - {{- tag -}} - {% endfor %} - {% else %} - {{ page.tags | join: ", " }} - {% endif %} -
- {% endif %} - {% if page.social-share %} {% include social-share.html %} {% endif %} diff --git a/announcements.html b/announcements.html --- a/announcements.html +++ b/announcements.html @@ -1,5 +1,5 @@ --- -layout: page +layout: page use-site-title: true --- @@ -8,13 +8,11 @@ {% for post in english_posts %}
-

{{ post.title }}

+

{{ post.title }}

- {% if post.subtitle %} -

- {{ post.subtitle }} -

- {% endif %} + {% if post.subtitle %} +

{{ post.subtitle }}

+ {% endif %}

@@ -38,19 +36,6 @@ - {% if post.tags.size > 0 %} -

- Tags: - {% if site.link-tags %} - {% for tag in post.tags %} - {{- tag -}} - {% endfor %} - {% else %} - {{ post.tags | join: ", " }} - {% endif %} -
- {% endif %} -
{% endfor %} diff --git a/css/main.css b/css/main.css --- a/css/main.css +++ b/css/main.css @@ -325,38 +325,6 @@ } } -/* --- Tags --- */ - -.blog-tags { - font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; - color: #999; - font-size: 15px; - margin-bottom: 30px; -} - -.blog-tags a { - color: {{ site.link-col }}; - text-decoration: none; - padding: 0px 5px; -} - -.blog-tags a:hover { - border-radius: 2px; - color: {{ site.hover-col }}; - background-color: #EEE; -} - -.post-preview .blog-tags { - margin-top: 5px; - margin-bottom: 0; -} - -@media only screen and (min-width: 768px) { - .post-preview .blog-tags { - margin-top: 10px; - } -} - @media only screen and (max-width: 500px) { .post-image, .post-image img { height: 100px; @@ -604,30 +572,6 @@ background-color: rgba(0, 0, 0, 0.2); } -/* Tags page */ - -.tag-btn { - margin: 5px; -} - -#full-tags-list { - font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; -} - -#full-tags-list .tag-entry { - margin: 0 0 15px 25px; -} - -#full-tags-list .tag-entry a { - font-size: 20px; -} - -#full-tags-list .tag-entry .entry-date { - color: #808080; - font-style: italic; - font-size: 16px; -} - .email-obfuscation span:nth-child(2n){ display: none; } diff --git a/tags.html b/tags.html deleted file mode 100644 --- a/tags.html +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: page -title: 'Tag Index' ---- - -{%- capture site_tags -%} - {%- for tag in site.tags -%} - {{- tag | first -}}{%- unless forloop.last -%},{%- endunless -%} - {%- endfor -%} -{%- endcapture -%} -{%- assign tags_list = site_tags | split:',' | sort -%} - -{%- for tag in tags_list -%} -  {{- tag -}} ({{site.tags[tag].size}}) -{%- endfor -%} - -
-{%- for tag in tags_list -%} -

- -  {{- tag -}} ({{site.tags[tag].size}}) -

-
- {%- for post in site.tags[tag] -%} -
- {{- post.title -}} - -
- {%- endfor -%} -
-{%- endfor -%} -