Implemented a CI/CD workflow using Forgejo and Docker to automate site builds and deployments. Removed the "thanks" page and its corresponding link in the footer for content streamlining.
45 lines
No EOL
1.3 KiB
HTML
45 lines
No EOL
1.3 KiB
HTML
<footer class="footer">
|
|
<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 -%} |