Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _layouts/keynote.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2 class="subheading">{{ page.subtitle }}</h2>

<hr>

{% if site.duoshuo_share && site.duoshuo_username %}
{% if site.duoshuo_share and site.duoshuo_username %}
<!-- 多说 Share start -->
</style>
<div class="ds-share"
Expand Down Expand Up @@ -134,7 +134,7 @@ <h2 class="subheading">{{ page.subtitle }}</h2>
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
{% for tag in site.tags %}
{% if tag[1].size > {{site.featured-condition-size}} %}
{% if tag[1].size > site.featured-condition-size %}
<a href="{{ site.baseurl }}/tags/#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">
{{ tag[0] }}
</a>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</h1
<h5><a href="{{'/tags/' | prepend: site.baseurl }}">FEATURED TAGS</a></h5>
<div class="tags">
{% for tag in site.tags %}
{% if tag[1].size > {{site.featured-condition-size}} %}
{% if tag[1].size > site.featured-condition-size %}
<a href="{{ site.baseurl }}/tags/#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">
{{ tag[0] }}
</a>
Expand Down Expand Up @@ -88,7 +88,7 @@ <h5>FRIENDS</h5>
<h5><a href="{{'/tags/' | prepend: site.baseurl }}">FEATURED TAGS</a></h5>
<div class="tags">
{% for tag in site.tags %}
{% if tag[1].size > {{site.featured-condition-size}} %}
{% if tag[1].size > site.featured-condition-size %}
<a href="{{ site.baseurl }}/tags/#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">
{{ tag[0] }}
</a>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h2 class="subheading">{{ page.subtitle }}</h2>

<hr>

{% if site.duoshuo_share && site.duoshuo_username %}
{% if site.duoshuo_share and site.duoshuo_username %}
<!-- 多说 Share start -->
</style>
<div class="ds-share"
Expand Down Expand Up @@ -126,7 +126,7 @@ <h2 class="subheading">{{ page.subtitle }}</h2>
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
{% for tag in site.tags %}
{% if tag[1].size > {{site.featured-condition-size}} %}
{% if tag[1].size > site.featured-condition-size %}
<a href="{{ site.baseurl }}/tags/#{{ tag[0] }}" title="{{ tag[0] }}" rel="{{ tag[1].size }}">
{{ tag[0] }}
</a>
Expand Down