-
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.
chore: remove/rename unused plugins and layout
- Loading branch information
Showing
7 changed files
with
39 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div class="news-card card"> | ||
<div class="card-header"> | ||
<div class="content"> | ||
{% if news-item.thumbnail %} | ||
<div class="thumbnail"> | ||
<img src="{{ news-item.thumbnail }}" alt="{{ news-item.thumbnail_alt }}"> | ||
</div> | ||
{% endif %} | ||
<div class="text"> | ||
<a class="card-header-title" href="{{ news-item.baseurl }}{{ news-item.url }}"><span>{{ news-item.title}}</span></a> | ||
<span class="card-header-date">{{ news-item.date | date: "%B %d, %Y"}} </span> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card-content"> | ||
<!-- Note: truncatewords may split a word inside of some text decoration --> | ||
{{ news-item.content | truncatewords: 51 }} | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
{{ content }} | ||
|
||
<div class="columns is-multiline"> | ||
{% for news-item in paginator.posts %} | ||
<div class="column is-12"> | ||
{% include news-card.html %} | ||
</div> | ||
{% endfor %} | ||
<div class="column is-12"> | ||
{% include pagination.html %} | ||
</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