Skip to content

Commit

Permalink
Giving every post/page the "smarter" custom tagline (just like page.h…
Browse files Browse the repository at this point in the history
…tml in master branch).

P.S. In master branch, every page has "smarter"  custom tagline but every post haven't.
  • Loading branch information
Ian Li committed Aug 8, 2012
1 parent 162a85d commit 10add52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _includes/themes/twitter/page.html
@@ -1,5 +1,5 @@
<div class="page-header">
<h1>{{ page.title }} <small>{{ page.tagline }}</small></h1>
<h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline }}</small>{% endif %}</h1>
</div>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion _includes/themes/twitter/post.html
@@ -1,5 +1,5 @@
<div class="page-header">
<h1>{{ page.title }} <small>Supporting tagline</small></h1>
<h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline }}</small>{% endif %}</h1>
</div>

<div class="row">
Expand Down

0 comments on commit 10add52

Please sign in to comment.