added more themes, update readme.md
This commit is contained in:
parent
b203448fe6
commit
332cec838a
20 changed files with 1248 additions and 88 deletions
|
@ -88,7 +88,7 @@
|
|||
|
||||
{% if config.build_search_index %}
|
||||
<div class="navbar-item search-container js-only">
|
||||
<input class="input is-primary" id="search" type="search" placeholder="Search">
|
||||
<input class="input" id="search" type="search" placeholder="Search">
|
||||
|
||||
<div class="search-results box">
|
||||
<div class="search-results__items"></div>
|
||||
|
|
|
@ -15,10 +15,23 @@
|
|||
</p>
|
||||
</a>
|
||||
<div class="tags has-addons level-item">
|
||||
{% if page.extra.author %}
|
||||
<span class="tag is-rounded is-info">{{ page.extra.author }}</span>
|
||||
{% endif %}
|
||||
<span class="tag is-rounded">{{ page.date | date(format="%F") }}</span>
|
||||
{% if page.taxonomies.authors %}
|
||||
<span class="tag is-rounded is-info">
|
||||
{% for author in page.taxonomies.authors %}
|
||||
{{ author }}
|
||||
{% if page.taxonomies.authors | length > 1 %}
|
||||
{% if loop.index != page.taxonomies.authors | length %}
|
||||
{% if loop.index == page.taxonomies.authors | length - 1 %}
|
||||
and
|
||||
{% else %}
|
||||
,
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</span>
|
||||
{% endif %}
|
||||
<span class="tag is-rounded">{{ self::read_time(page=page) }}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue