You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
3.6 KiB
HTML

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{% include header.html title=site.top_title %}
{% assign custom_category = site.custom_category_name | default: 'opinion' %}
{% assign custom_category_title = site.custom_category_title | default: 'Opinions' %}
{% assign custom_category_subtitle = site.custom_category_subtitle | default: '"A view or judgement [formed] about something"' %}
{{ content }}
<!-- Primary Page Layout
-->
<div class="section hero">
<div class="container">
<div class="row imf">
<div class="one-half-column">
<h1><span class="blog">blog.</span>{{ site.top_name }}</h1>
</div>
</div>
</div>
</div>
<div class="section banner imf">
<div class="container">
<div class="row">
<div class="five columns">
{{ site.top_description }}
</div>
<div class="four columns u-pull-right" id="social">
<a href="https://{{ site.corporate_url }}"><i class="fas fa-chess-rook"></i></a>
<i class="fas fa-circle separator"></i>
<a href="https://github.com/{{ site.github_username }}"><i class="fab fa-github"></i></a>
<i class="fas fa-circle separator"></i>
<a href="https://www.linkedin.com/in/{{ site.linkedin_path }}"><i class="fab fa-linkedin-in"></i></a>
<i class="fas fa-circle separator"></i>
<a href="https://twitter.com/{{ site.twitter_username }}"><i class="fab fa-twitter"></i></a>
<i class="fas fa-circle separator"></i>
<a href="/feed.xml"><i class="fas fa-rss"></i></a>
</div>
</div>
</div>
</div>
<div class="color-overlay">
<div class="section posts imf">
<div class="container">
<div class="row">
<div class="two-thirds column value">
{% for post in site.posts %}
{% unless post.categories contains custom_category %}
<h4 class="post-title"><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></h4>
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
<h5 class="post-date">{{ post.date | date: date_format }}</h5>
<p class="post-intro">{{ post.excerpt | strip_html | normalize_whitespace | truncate: 300 | escape }}</p>
<p class="post-link"><a href="{{ post.url | relative_url }}">Read more ...</a></p>
{% endunless %}
{% endfor %}
</div>
<div class="one-third column value">
<h3 class="opinion-section-title">{{ custom_category_title }}</h3>
<p class="opinions-intro">
{{ custom_category_subtitle }}
</p>
{% for post in site.posts %}
{% if post.categories contains custom_category %}
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
<h4 class="opinion-title"><a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a></h4>
<h5 class="opinion-date">{{ post.date | date: date_format }}</h5>
<p class="opinion-intro">{{ post.excerpt | strip_html | normalize_whitespace | truncate: 200 | escape }}</p>
<p class="post-link"><a href="{{ post.url | relative_url }}">Read more ...</a></p>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
{% include footer.html %}
<!-- End Document
-->
</body>
</html>