Initial push
This commit is contained in:
15
_includes/footer.html
Normal file
15
_includes/footer.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="footer">
|
||||
<span class="footer-text float-left">This work is licensed under <a rel="license" href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank">GPLv3</a></span>
|
||||
<span class="footer-text float-right">
|
||||
Site Updated: {{ site.time | date: '%Y-%m-%d' }} {{ site.timezone_short }} (<a href="/feed.xml" target="_blank">RSS</a>)
|
||||
</span>
|
||||
</div>
|
||||
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
|
||||
<script>
|
||||
kofiWidgetOverlay.draw('dustinnewkirk', {
|
||||
'type': 'floating-chat',
|
||||
'floating-chat.donateButton.text': 'Support Me',
|
||||
'floating-chat.donateButton.background-color': '#ff851b',
|
||||
'floating-chat.donateButton.text-color': '#3D2200'
|
||||
});
|
||||
</script>
|
||||
18
_includes/head.html
Normal file
18
_includes/head.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
{% seo %}
|
||||
{% if site.keywords or page.tags %}
|
||||
<meta name="keywords" content="{% if page.tags %}{{ page.tags | join: ','}}{% else %}{{ site.keywords | join: ',' }}{% endif %}" />
|
||||
{% endif %}
|
||||
<meta name="google-adsense-account" content="ca-pub-5033279084799102">
|
||||
<link rel="shortcut icon" href="/assets/logos/dn-tech-favicon-color.png" />
|
||||
<link rel="apple-touch-icon" href="/assets/logos/logo-color.png"/>
|
||||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/css/styles.css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/css/prism.css" />
|
||||
<script src="{{ site.baseurl }}/assets/js/prism.js"></script>
|
||||
{% if site.analytics.plausible.enabled %}
|
||||
<script defer data-domain="{{ site.analytics.plausible.site_fqdn }}" src="{{ site.analytics.plausible.script_source }}"></script>
|
||||
{% endif %}
|
||||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5033279084799102"
|
||||
crossorigin="anonymous"></script>
|
||||
8
_includes/header.html
Normal file
8
_includes/header.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="header">
|
||||
<h1>d@n tech</h1>
|
||||
<br>
|
||||
<h5><i>Caffinated Tech Insights</i></h5>
|
||||
<br>
|
||||
{% include nav.html %}
|
||||
<hr>
|
||||
</div>
|
||||
5
_includes/nav.html
Normal file
5
_includes/nav.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<nav>
|
||||
{% for item in site.data.nav %}
|
||||
<a href="{{ item.link }}">{{ item.name }}</a>
|
||||
{% endfor %}
|
||||
</nav>
|
||||
Reference in New Issue
Block a user