layout: page

title: Posts Archive tagline: Check out all posts

permalink: /pages/private/blog/navigator/archive/ noindex: true

resource_options:

- masthead:
    opacity:                          0.5
    slides:
      - url:                          /assets/images/master_header/chuttersnap-1280x800.png
        alt:                          chuttersnap-1200x800

regenerate: false


{% comment %} Liquid procedures ——————————————————————————– {% endcomment %} {% capture get_page_path %}themes/{{site.template.name}}/procedures/global/get_page_path.proc{% endcapture %} {% capture select_icon_size %}themes/{{site.template.name}}/procedures/global/select_icon_size.proc{% endcapture %} {% capture get_category_item %}themes/{{site.template.name}}/procedures/global/get_category_item.proc{% endcapture %}

{% comment %} Variables ——————————————————————————– {% endcomment %} {% assign view_config = site.data.builder.blog_navigator.archive_view %} {% assign view_description = view_config.description %}

{% if site.permalink == 'none' %}

{% capture browser_page_url %}{{ page.url }}.html{% endcapture %}

{% else %}

{% capture browser_page_url %}{{ page.url }}{% endcapture %}

{% endif %}

{% include {{get_page_path}} mode='absolute' %}

{% capture navigator %}{{page_path}}/{% endcapture %} {% capture blog_preview %}{{page_path}}/archive/preview/{% endcapture %} {% capture date_view %}{{page_path}}/archive/dateview/{% endcapture %} {% capture category_view %}{{page_path}}/archive/categoryview/{% endcapture %} {% capture tag_view %}{{page_path}}/archive/tagview/{% endcapture %} {% capture all_view %}{{page_path}}/{% endcapture %}

{% comment %} Main ——————————————————————————– {% endcomment %} <!– [INFO ] [ {{page.url}} ] [Generate HTML}] –> <div class=“paginator ml-2”>

<ul class="pagination raised-z0">
  <li class="page-item"><a class="page-link" href="{{navigator     | prepend: site.baseurl}}" title="Blog View">Navigator</a></li>
  <li class="page-item"><a class="page-link" href="{{category_view | prepend: site.baseurl}}" title="View by Category">By Category</a></li>
  <li class="page-item"><a class="page-link" href="{{tag_view      | prepend: site.baseurl}}" title="View by Tag">By Tag</a></li>
  <li class="page-item"><a class="page-link" href="{{date_view     | prepend: site.baseurl}}" title="View All">By Date</a></li>
</ul>

</div>

<div id=“index” class=“post-archive-search-results col-md-10 col-sm-10 col-xs-11”>

<div class="view-description">{{view_description}}</div>
<div class="post-headline"> 
  <h2 id="post-headline" class="mt-5">All Posts</h2>
</div>
<!-- ul class="list-unstyled link-news" -->
{% for post in site.posts %}
  {% assign excerpt = post.excerpt | truncatewords: 50 | strip_html | strip_newlines | strip %}
  <div class="card card-flat mb-4">        
    <div class="card-body">
      <!-- <span class="post-meta">{{post.date|date: "%B %d, %Y"}}</span> -->
      <h3 id="{{ 100000 | rand }}" class="card-title">{{ post.title }}</h3>
      <h5 class="notoc card-subtitle text-muted mb-2">{{ post.tagline }}</h5>
      <div class="card-text"><p>{{ excerpt }}</p></div>
    </div>
    <div class="card-footer">
      <!-- <a class="card-link" href="{{post.url}}#readmore" target="_blank">Read more ..</a> -->
      <a class="btn btn-primary btn-raised btn-flex" href="{{post.url}}#readmore">
        <i class="fa fa-eye fa-lg" style="color:#FFFFFF;"></i>
        Read more
      </a>
    </div>
  </div>
{% endfor %}

</div>

<!– [INFO ] [j1.page.{{page.title}} ] [Save the current page to cookieUserState cookie: {{ browser_page_url }}] –> {% comment %} Update cookie for lastpage ——————————————————————————– {% endcomment %} <script type=“text/javascript”>

function setLastPage() {
  var logger = log4javascript.getLogger('j1.BlogNavigator');
  var user_state_last_page = "{{browser_page_url}}";
  j1.setUserStateCookie( {last_page:user_state_last_page} );
  logger.info('Saved current Post Browser page to cookie: {{browser_page_url}}');
}
window.onload = setLastPage;

</script>