Almost a new release
This commit is contained in:
parent
29129fa36b
commit
885ff9987f
6 changed files with 59 additions and 10 deletions
|
@ -188,3 +188,9 @@ VB
|
|||
}
|
||||
|
||||
/************************************************/
|
||||
|
||||
/* Article footer */
|
||||
|
||||
#article-footer {
|
||||
margin-top: 5em;
|
||||
}
|
|
@ -132,7 +132,15 @@
|
|||
<p><strong><a href="{{ SITEURL }}/mastodon-comments/bot.php?title={{ article.title|striptags }}&url={{ SITEURL }}/{{ article.url }}{% if article.photo_image %}&image=../{{ article.photo_image[1] }}{% endif %}">Click Here to Comment on Mastodon.</a></strong></p>
|
||||
<p>If its your first time commenting, <a href="https://jeffmackinnon.com/commenting-on-blog-with-mastodon.html">click here</a> to figure it out.</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if ARTICLE_FOOTER == true %}
|
||||
<!-- Cornerstone Pages -->
|
||||
<section id="article-footer">
|
||||
{% include 'include/article_footer.html' %}
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
</div><!-- /.entry-content -->
|
||||
</section>
|
||||
{% endblock %}
|
|
@ -100,7 +100,7 @@
|
|||
</div>
|
||||
|
||||
</div>
|
||||
{% include 'sidebar.html' %}
|
||||
{% include 'include/sidebar.html' %}
|
||||
</div>
|
||||
|
||||
|
||||
|
|
15
templates/include/article_footer.html
Normal file
15
templates/include/article_footer.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<section id="banner">
|
||||
<div class="content">
|
||||
<header class="major">
|
||||
<h2>Our Newsletter</h2>
|
||||
</header>
|
||||
<p>We also have a weekly-ish newsletter where I keep you up to date with my thoughts on the industry, practical tutorials and more.</p>
|
||||
<ul class="actions">
|
||||
<li><a href="nl/" class="button big">Learn More</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<span class="image object">
|
||||
<script async data-uid="c20eb8a248" src="https://jeffmackinnon.ck.page/c20eb8a248/index.js"></script>
|
||||
</span>
|
||||
</section>
|
||||
|
|
@ -14,19 +14,38 @@
|
|||
</ul>
|
||||
<br />
|
||||
</article>
|
||||
<!--
|
||||
<article>
|
||||
<header>
|
||||
<h2 id="indexheader"><a href="https://jmkengineering.com/smart-grid/" rel="bookmark" title="Smart Grid">Smart Grid</a></h2>
|
||||
<h2 id="indexheader"><a href="https://jmkengineering.com/power-system-studies/" rel="bookmark" title="Power System Studies">Power System Studies</a></h2>
|
||||
</header>
|
||||
<a href="https://jmkengineering.com/smart-grid/" class="image"><img src="https://jmkengineering.com/images/adobestock21717426a.jpg" style="max-width: 100%; display: inline; float: center;" /></a>
|
||||
<div class="entry-content">An electricity supply network that uses digital communications technology to detect and react to local changes in usage. – Oxford English Dictionary Smart Grid is a concept describing the evolution of the power system. Among the desired future power.</div>
|
||||
<a href="https://jmkengineering.com/power-system-studies/" class="image"><img src="images/mcc-room.jpg" style="max-width: 100%; display: inline; float: center;" /></a>
|
||||
<div class="entry-content">Power System Studies are important.</div>
|
||||
<br />
|
||||
<ul class="actions">
|
||||
<li><a href="https://jmkengineering.com/smart-grid/" class="button">Learn More</a></li>
|
||||
<li><a href="https://jmkengineering.com/power-system-studies/" class="button">Learn More</a></li>
|
||||
</ul>
|
||||
<br />
|
||||
|
||||
</article>
|
||||
<article>
|
||||
<header>
|
||||
<h2 id="indexheader"><a href="https://jmkengineering.com/solar-design/" rel="bookmark" title="olar Design">Solar Design</a></h2>
|
||||
</header>
|
||||
<a href="https://jmkengineering.com/solar-design/" class="image"><img src="images/pv-solar-array.jpg" style="max-width: 100%; display: inline; float: center;" /></a>
|
||||
<div class="entry-content">I need to talk about what we do wrt PC Solar Design</div>
|
||||
<br />
|
||||
<ul class="actions">
|
||||
<li><a href="https://jmkengineering.com/solar-design/" class="button">Learn More</a></li>
|
||||
</ul>
|
||||
<br />
|
||||
</article> -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
{% endfor %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
||||
<br />
|
||||
<br />
|
||||
<header class="major">
|
||||
|
@ -35,12 +36,12 @@
|
|||
</header>
|
||||
|
||||
<ul>
|
||||
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
||||
|
||||
{% for cat, null in categories %}
|
||||
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</nav>
|
||||
|
||||
<!-- Section --> <!-- No mini posts for now
|
Loading…
Reference in a new issue