fix
This commit is contained in:
@ -2,7 +2,10 @@
|
||||
{{ partial "navbar.html" . }}
|
||||
{{ partial "header.html" . }}
|
||||
{{ partial "content.html" . }}
|
||||
|
||||
</div>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,4 +1,6 @@
|
||||
|
||||
<div id="container">
|
||||
|
||||
<div class="outer">
|
||||
<div id="blog-archives" class="category">
|
||||
<ul class="cp_list">
|
||||
@ -24,7 +26,7 @@
|
||||
{{ if or (eq $t "chara") (eq $t "story") (eq $t "card") (eq $t "vrm") }}
|
||||
|
||||
<li class="commit">
|
||||
<span class="icon-moji_a"></span>
|
||||
<a href="#header"><span class="icon-moji_a"></span></a>
|
||||
</li>
|
||||
|
||||
<li class="top">
|
||||
@ -40,7 +42,7 @@
|
||||
{{ end }}
|
||||
|
||||
<li class="commit">
|
||||
<span class="icon-moji_a"></span>
|
||||
<a href="#header"><span class="icon-moji_a"></span></a>
|
||||
<!--
|
||||
<i class="fa-solid fa-code-branch"></i>
|
||||
<i class="fa-solid fa-code-commit"></i>
|
||||
@ -48,8 +50,13 @@
|
||||
-->
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -40,4 +40,6 @@
|
||||
{{ range .AlternativeOutputFormats -}}
|
||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||
{{ end -}}
|
||||
|
||||
|
||||
</head>
|
||||
|
@ -1,9 +1,13 @@
|
||||
<body>
|
||||
|
||||
<div class="containerx">
|
||||
|
||||
{{ $s := path.Dir (.Permalink | relURL) }}
|
||||
{{ $t := index (split $s "/") 2 }}
|
||||
{{ $o := index (split $s "/") 1 }}
|
||||
|
||||
<header id="header">
|
||||
{{ partial "particles.html" . }}
|
||||
<div class="logo">
|
||||
{{ partial "svg.html" . }}
|
||||
</div>
|
||||
|
5
layouts/partials/particles.html
Normal file
5
layouts/partials/particles.html
Normal file
@ -0,0 +1,5 @@
|
||||
<div id="particles-js"></div>
|
||||
<script src="/pkg/particles/particles.min.js"></script>
|
||||
<script src="/pkg/particles/stats.min.js"></script>
|
||||
<script src="/pkg/particles/config.js"></script>
|
||||
<link rel="stylesheet" href="/pkg/particles/particles.css" />
|
Reference in New Issue
Block a user