forked from logicdrop/quarkusio.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a38d680
commit c548aae
Showing
7 changed files
with
175 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,59 @@ | ||
--- | ||
layout: base | ||
title: Tag Archive | ||
--- | ||
|
||
<div class="grid-wrapper"> | ||
<div class="grid-wrapper blog-page"> | ||
<div class="grid__item width-10-12"> | ||
<h1 class="title text-caps">Tagged posts: '{{ page.title }}'</h1> | ||
<h1 class="text-caps">Blog</h1> | ||
</div> | ||
<div class="grid__item width-2-12 align-self-center"> | ||
<a href="{{site.baseurl}}/feed.xml"><i class="fas fa-rss-square"></i></a> | ||
</div> | ||
|
||
<div class="grid__item width-10-12 width-12-12-m"> | ||
<ul class="posts"> | ||
{% for post in page.posts %} | ||
<li> | ||
<span class="post-date">{{ post.date | date: '%B %d, %Y' }}</span> | ||
<div> | ||
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> | ||
<div class="grid__item width-9-12 width-12-12-m"> | ||
<h2 class="title">Tagged posts: '{{ page.title }}'</h2> | ||
{% for post in page.posts %} | ||
{% assign author = site.data.authors[post.author] %} | ||
<div class="blog-list-item grid-wrapper"> | ||
<div class="grid__item width-12-12"> | ||
<div class="post-title"> | ||
<a href="{{site.baseurl}}{{ post.url }}">{{ post.title }}</a> | ||
</div> | ||
<div class="post-date small"> | ||
{{ post.date | date: '%B %d, %Y' }} | ||
{% if post.tags %} | ||
<span class="tags">tags:{% for tag in post.tags %}<a href="{{site.baseurl}}/blog/tag/{{tag}}">#{{ tag}}</a>{% endfor %}</span> | ||
{% endif %} | ||
</div> | ||
</div> | ||
<div class="grid__item width-8-12 width-12-12-m byline-wrapper"> | ||
{% if author.emailhash %} | ||
<img class="headshot" src="https://www.gravatar.com/avatar/{{ author.emailhash }}"> | ||
{% endif %} | ||
<p class="byline"><span>By</span> {{ author.name }}<br/></p> | ||
</div> | ||
<div class="grid__item width-12-12"> | ||
{% if post.synopsis %} | ||
<p>{{ post.synopsis | strip_html }}</p> | ||
{% else %} | ||
<p>{{ post.content | strip_html | truncatewords: 75 }}</p> | ||
{% endif %} | ||
</div> | ||
<div class="grid__item width-8-12 read-more small"><a href="{{site.baseurl}}{{ post.url }}">Read More ›</a></div> | ||
<div class="grid__item width-4-12 width-12-12-m share-post">{% include share-page.html title=post.title url=post.url %}</div> | ||
</div> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
|
||
<div class="grid__item width-2-12"> | ||
{% for stats in site.tags %} | ||
{% assign tag = stats | first %} | ||
{% assign posts = stats | last %} | ||
<a href="{{site.baseurl}}/blog/tag/{{tag}}">{{ tag }}</a></br> | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
<div class="grid__item width-1-12 width-12-12-m"></div> | ||
<div class="grid__item width-2-12 width-12-12-m"> | ||
<h3 class="tags-label">Tags</h3> | ||
{% assign tag_words = site.tags | sort %} | ||
{% for stats in tag_words %} | ||
{% assign tag = stats | first %} | ||
{% assign posts = stats | last %} | ||
<a href="{{site.baseurl}}/blog/tag/{{tag}}">{{ tag }}</a></br> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.