Merge branch 'hotfix/minor' into develop

This commit is contained in:
Michael Rose 2013-08-23 16:05:13 -04:00
commit fdd9942dea
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ description: "An archive of posts."
{% if post.link %} {% if post.link %}
<h1 class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" itemprop="url" title="{{ post.title }}"><i class="icon-double-angle-right"></i></a> <a href="{{ post.link }}">{{ post.title }}</a></h1> <h1 class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" itemprop="url" title="{{ post.title }}"><i class="icon-double-angle-right"></i></a> <a href="{{ post.link }}">{{ post.title }}</a></h1>
{% else %} {% else %}
<h1 class="entry-title" itemprop="name"><a href="{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></h1> <h1 class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></h1>
{% endif %} {% endif %}
</header> </header>
<div class="entry-content" itemprop="description"> <div class="entry-content" itemprop="description">

View File

@ -27,7 +27,7 @@ description: "An archive of posts sorted by tag."
{% for post in pages_list %} {% for post in pages_list %}
{% if post.title != null %} {% if post.title != null %}
{% if group == null or group == post.group %} {% if group == null or group == post.group %}
<li class="entry-title" itemprop="name"><a href="{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></li> <li class="entry-title" itemprop="name"><a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a></li>
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View File

@ -21,7 +21,7 @@ General notes and suggestions for customizing **HPSTR RDX**.
5. Check out the sample posts in `_posts` to see examples for pulling in large feature images, tags, and other YAML data. 5. Check out the sample posts in `_posts` to see examples for pulling in large feature images, tags, and other YAML data.
6. Read the documentation below for further customization pointers and documentation. 6. Read the documentation below for further customization pointers and documentation.
<div markdown="0"><a href="https://github.com/mmistakes/hpstr-rdx-theme" class="btn btn-info">Download the Theme</a></div> <div markdown="0"><a href="https://github.com/mmistakes/hpstr-jekyll-theme" class="btn btn-info">Download the Theme</a></div>
**Pro-tip:** Delete the `gh-pages` branch after cloning and start fresh by branching off `master`. There is a bunch of garbage in `gh-pages` used for the theme's demo that I'm guessing you don't want on your site. **Pro-tip:** Delete the `gh-pages` branch after cloning and start fresh by branching off `master`. There is a bunch of garbage in `gh-pages` used for the theme's demo that I'm guessing you don't want on your site.
{:.notice} {:.notice}