removing js, add footer, new blog post

This commit is contained in:
yequari 2024-04-26 17:48:14 -07:00
parent 9456849d2c
commit 415e5af441
6 changed files with 12 additions and 16 deletions

View File

@ -0,0 +1,6 @@
<p>
{{ range first 1 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
Site last updated <time id="last-update" datetime="{{ .PublishDate.Format "2006-01-02 15:04:05 -0700" }}">{{ .PublishDate.Format "January 2, 2006" }}</time>.
{{ end }}
<script src="https://tinylytics.app/embed/ig7D4Y9LSxprgCWfj5e8.js" defer></script>
</p>

View File

@ -16,10 +16,10 @@
<main> <main>
{{- block "main" . }}{{- end }} {{- block "main" . }}{{- end }}
</main> </main>
</div>
<footer> <footer>
{{- partial "footer.html" . -}} {{- partial "footer.html" . -}}
</footer> </footer>
</div> </div>
</div>
</body> </body>
</html> </html>

View File

@ -12,5 +12,4 @@
{{ .Content }} {{ .Content }}
</div> </div>
</article> </article>
{{ partial "webmentions.html" }}
{{ end }} {{ end }}

View File

@ -1,6 +0,0 @@
<p class="hidden">
{{ range first 1 (where .Site.RegularPages.ByDate.Reverse "Section" "blog") }}
Last updated <time id="last-update" datetime="{{ .PublishDate.Format "2006-01-02 15:04:05 -0700" }}">{{ .PublishDate.Format "January 2, 2006" }}</time>.
{{ end }}
<script src="https://tinylytics.app/embed/ig7D4Y9LSxprgCWfj5e8.js" defer></script>
</p>

View File

@ -7,11 +7,8 @@
<title>{{ .Page.Title }}</title> <title>{{ .Page.Title }}</title>
<link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/main.css">
<link rel="icon" type="image/png" href="/favicon.png"> <link rel="icon" type="image/png" href="/favicon.png">
<!-- <script src="/js/avatar.js" defer></script> -->
<!-- <script src="/js/quotes.js" defer></script> -->
<link rel="webmention" href="https://webmention.io/yequari.com/webmention" /> <link rel="webmention" href="https://webmention.io/yequari.com/webmention" />
<link rel="pingback" href="https://webmention.io/yequari.com/xmlrpc" /> <link rel="pingback" href="https://webmention.io/yequari.com/xmlrpc" />
<script src="/js/webmention.js" async></script>
{{ range .AlternativeOutputFormats -}} {{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}} {{ end -}}

View File

@ -263,9 +263,9 @@ nav li a:hover, nav li a:active {
border-radius: 15px; border-radius: 15px;
z-index: 1; z-index: 1;
display: flex; display: flex;
flex-flow: row wrap-reverse; flex-flow: row wrap;
box-shadow: 10px 5px 5px #00000066; box-shadow: 10px 5px 5px #00000066;
padding: 30px 0; padding: 30px 0 0 0;
} }
.sidebar { .sidebar {
@ -426,9 +426,9 @@ li.page-item {
} }
footer { footer {
padding: 0 0 15px 0px;
text-align: center; text-align: center;
color: var(--secondary-text); color: var(--secondary-text);
flex: 1 1 100%;
} }
.metadata { .metadata {