-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
188 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
--- | ||
layout: default | ||
--- | ||
<article class="section"> | ||
<div class="container"> | ||
<div class="columns"> | ||
<div class="column is-8 is-offset-2"> | ||
<!-- Post Header --> | ||
<header class="post-header"> | ||
<h1 class="title is-1">{{ page.title }}</h1> | ||
<p class="subtitle is-4"> | ||
<span class="icon"><i class="fas fa-calendar-alt"></i></span> | ||
{{ page.date | date: '%B %d, %Y' }} | ||
<span class="icon"><i class="fas fa-user"></i></span> {{ page.author }} | ||
</p> | ||
</header> | ||
|
||
<!-- Top Leaderboard Ad --> | ||
{% include ad/adsense.html type="top-leaderboard" %} | ||
|
||
<!-- Post Content --> | ||
<div class="content"> | ||
{{ content }} | ||
</div> | ||
|
||
<!-- Square Ad --> | ||
{% include ad/adsense.html type="square" %} | ||
|
||
<!-- Article Ad --> | ||
{% include ad/adsense.html type="article" %} | ||
|
||
<!-- Bottom Leaderboard Ad --> | ||
{% include ad/adsense.html type="small-leaderboard" %} | ||
|
||
<!-- Post Footer --> | ||
<footer class="post-footer"> | ||
<nav class="level"> | ||
<div class="level-left"> | ||
{% if page.previous %} | ||
<div class="level-item"> | ||
<a class="button is-light" href="{{ page.previous.url }}"> | ||
<span class="icon"><i class="fas fa-arrow-left"></i></span> | ||
<span>Previous Post</span> | ||
</a> | ||
</div> | ||
{% endif %} | ||
</div> | ||
<div class="level-right"> | ||
{% if page.next %} | ||
<div class="level-item"> | ||
<a class="button is-light" href="{{ page.next.url }}"> | ||
<span>Next Post</span> | ||
<span class="icon"><i class="fas fa-arrow-right"></i></span> | ||
</a> | ||
</div> | ||
{% endif %} | ||
</div> | ||
</nav> | ||
</footer> | ||
</div> | ||
|
||
<!-- Sidebar with Ads --> | ||
<div class="column is-2"> | ||
<aside> | ||
<!-- Button Ad --> | ||
{% include ad/adsense.html type="button" %} | ||
|
||
<!-- Skyscraper Ad --> | ||
{% include ad/adsense.html type="skyscraper" %} | ||
|
||
<!-- Small Skyscraper Ad --> | ||
{% include ad/adsense.html type="skyscraper-small" %} | ||
</aside> | ||
</div> | ||
</div> | ||
</div> | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters