124 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
---
 | 
						|
layout: default
 | 
						|
---
 | 
						|
 | 
						|
<!-- Post Header -->
 | 
						|
<header class="intro-header" style="background-image: url('{{ site.baseurl }}/{% if page.header-img %}{{ page.header-img }}{% else %}{{ site.header-img }}{% endif %}')">
 | 
						|
 | 
						|
    <!-- category link -->
 | 
						|
    {% if page.category %}
 | 
						|
      {% for site_category in site.data.categories %}
 | 
						|
        {% if site_category.slug == page.category %}
 | 
						|
          {% assign category = site_category %}
 | 
						|
        {% endif %}
 | 
						|
      {% endfor %}
 | 
						|
      {% if category %}
 | 
						|
        {% capture category_content %} in <b><a href="/meta/category/{{ category.slug }}/">{{ category.name }}</a></b>{% endcapture %}
 | 
						|
      {% endif %}
 | 
						|
    {% else %}
 | 
						|
      {% assign category_content = '' %}
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    <!-- tag links -->
 | 
						|
    {% if page.tags.size > 0 %}
 | 
						|
      {% capture tags_content %} tagged with {% endcapture %}
 | 
						|
      {% for post_tag in page.tags %}
 | 
						|
          {% for data_tag in site.data.tags %}
 | 
						|
            {% if data_tag.slug == post_tag %}
 | 
						|
              {% assign tag = data_tag %}
 | 
						|
            {% endif %}
 | 
						|
          {% endfor %}
 | 
						|
          {% if tag %}
 | 
						|
            {% capture tags_content_temp %}{{ tags_content }}<b><a href="/meta/tag/{{ tag.slug }}/">{{ tag.name }}</a></b>{% if forloop.last == false %}, {% endif %}{% endcapture %}
 | 
						|
            {% assign tags_content = tags_content_temp %}
 | 
						|
          {% endif %}
 | 
						|
      {% endfor %}
 | 
						|
    {% else %}
 | 
						|
      {% assign tags_content = '' %}
 | 
						|
    {% endif %}
 | 
						|
    
 | 
						|
    <!-- author links -->
 | 
						|
    {% if page.author %}
 | 
						|
      {% assign author = site.data.authors[page.author] %}
 | 
						|
      {% if author %}
 | 
						|
        <!-- {% capture author_content_temp %}<a href="mailto:{{ author.email }}" target="_blank">{{ author.name }}</a>{% endcapture %} -->
 | 
						|
        <!-- This would be a great place to insert a link to all posts by an author. If I knew how. -->
 | 
						|
        {% capture author_content_temp %}{{ author.name }}{% endcapture %}
 | 
						|
        {% assign author_content = author_content_temp %}
 | 
						|
      {% else %}
 | 
						|
        {% assign author_content = page.author %}
 | 
						|
	  {% endif %}
 | 
						|
    {% else %}
 | 
						|
      {% assign author_content = page.author %}
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    <div class="container">
 | 
						|
        <div class="row">
 | 
						|
            <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
 | 
						|
                <div class="post-heading">
 | 
						|
                    <h1>{{ page.title }}</h1>
 | 
						|
                    {% if page.subtitle %}
 | 
						|
                    <h2 class="subheading">{{ page.subtitle }}</h2>
 | 
						|
                    {% endif %}
 | 
						|
                    <span class="meta">Posted by {{ author_content }} on {{ page.date | date: "%B %-d, %Y" }} {{ category_content }}{{ tags_content }}</span>
 | 
						|
					{% if author %}
 | 
						|
                      <ul class="list-inline text-center">
 | 
						|
                        {% if author.twitter %}
 | 
						|
                        <li><a style="color:#ffffff" href="https://twitter.com/{{ author.twitter }}" target="_blank"><span class="fa-stack fa-lg">
 | 
						|
                          <i class="fa fa-square-o fa-stack-2x"></i>
 | 
						|
                          <i class="fa fa-twitter fa-stack-1x"></i>
 | 
						|
                        </span></a></li>
 | 
						|
                        {% endif %}
 | 
						|
                        {% if author.linkedin %}
 | 
						|
                        <li><a style="color:#ffffff" href="https://www.linkedin.com/in/{{ author.linkedin }}" target="_blank"><span class="fa-stack fa-lg">
 | 
						|
                          <i class="fa fa-square-o fa-stack-2x"></i>
 | 
						|
                          <i class="fa fa-linkedin fa-stack-1x"></i>
 | 
						|
                        </span></a></li>
 | 
						|
                        {% endif %}
 | 
						|
                        {% if author.github %}
 | 
						|
                        <li><a style="color:#ffffff" href="https://github.com/{{ author.github }}" target="_blank"><span class="fa-stack fa-lg">
 | 
						|
                          <i class="fa fa-square-o fa-stack-2x"></i>
 | 
						|
                          <i class="fa fa-github fa-stack-1x"></i>
 | 
						|
                        </span></a></li>
 | 
						|
                        {% endif %}
 | 
						|
                     </ul>
 | 
						|
                   {% endif %}
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</header>
 | 
						|
 | 
						|
<!-- Post Content -->
 | 
						|
<article>
 | 
						|
    <div class="container">
 | 
						|
        <div class="row">
 | 
						|
            <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
 | 
						|
 | 
						|
				{{ content }}
 | 
						|
 | 
						|
                <hr>
 | 
						|
 | 
						|
                <ul class="pager">
 | 
						|
                    {% if page.previous.url %}
 | 
						|
                    <li class="previous">
 | 
						|
                        <a href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.previous.title}}">← Previous Post</a>
 | 
						|
                    </li>
 | 
						|
                    {% endif %}
 | 
						|
                    {% if page.next.url %}
 | 
						|
                    <li class="next">
 | 
						|
                        <a href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{page.next.title}}">Next Post →</a>
 | 
						|
                    </li>
 | 
						|
                    {% endif %}
 | 
						|
                </ul>
 | 
						|
 | 
						|
                <hr>
 | 
						|
 | 
						|
                {% include disqus.html %}
 | 
						|
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</article>
 | 
						|
 | 
						|
<hr>
 |