Introduced initial setup for a Jekyll-based site, including configurations, layouts, assets, and styles. Added custom 404 page, favicon assets, SCSS themes, fonts, and a blog post template to establish the foundation for the site.
46 lines
No EOL
1.4 KiB
HTML
46 lines
No EOL
1.4 KiB
HTML
<footer class="footer">
|
|
<a class="footer_item" href="/thanks">ack.</a>
|
|
<a class="footer_item" href="javascript::void(0)">resume</a>
|
|
<a class="footer_item" href="/feed.xml">rss</a>
|
|
<span class="footer_item">© {{ site.time | date: "%Y" }}</span>
|
|
<small class="footer_copyright">
|
|
<!-- Klisé Theme: https://github.com/piharpi/jekyll-klise -->
|
|
<a
|
|
href="https://github.com/piharpi/jekyll-klise"
|
|
target="_blank"
|
|
rel="noreferrer noopener"
|
|
>klisé</a
|
|
>
|
|
theme on
|
|
<a href="https://jekyllrb.com" target="_blank" rel="noreferrer noopener"
|
|
>jekyll</a
|
|
>
|
|
</small>
|
|
</footer>
|
|
<script src="/assets/js/main.js" defer="defer"></script>
|
|
{%- if site.google_analytics -%}
|
|
<!-- Google tag (gtag.js) -->
|
|
<script
|
|
async
|
|
src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"
|
|
></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag() {
|
|
dataLayer.push(arguments);
|
|
}
|
|
gtag("js", new Date());
|
|
|
|
gtag("config", "{{ site.google_analytics }}");
|
|
</script>
|
|
{%- endif -%}
|
|
{%- if page.url == '/archive/' -%}
|
|
<script src="/assets/js/search.min.js"></script>
|
|
<script>
|
|
var sjs = SimpleJekyllSearch({
|
|
searchInput: document.getElementById('search-input'),
|
|
resultsContainer: document.getElementById('search-results'),
|
|
json: '/assets/search.json',
|
|
});
|
|
</script>
|
|
{%- endif -%} |