1
0
This commit is contained in:
syui 2024-04-06 03:54:19 +09:00
parent d9f8fd05ff
commit be3f528e74
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56
5 changed files with 14 additions and 17 deletions

View File

@ -1,7 +1,7 @@
+++ +++
date = "2024-04-01T00:00:00+09:00" date = "2024-04-01T00:00:00+09:00"
tags = ["blog"] tags = ["blog"]
title = "change layout" title = "update layout"
+++ +++
layoutを更しました。 layoutを更しました。

View File

@ -12,8 +12,7 @@ date = "2024-01-22"
</div> </div>
<iframe src="https://manga.syui.ai/0" allowfullscreen frameborder="0" class="manga"></iframe> <iframe src="https://manga.syui.ai" allowfullscreen frameborder="0" class="manga"></iframe>
<!--more--> <!--more-->

View File

@ -6,7 +6,7 @@
<div id="blog-archives" class="category"> <div id="blog-archives" class="category">
<ul class="cp_list"> <ul class="cp_list">
{{ range .Data.Pages.Reverse }} {{ range .Data.Pages.Reverse }}
<li class="blog-list"> <li class="blog-list-first">
<a href="{{.Permalink}}">{{.Title}}</a> <span class="blog-date">{{ .Date.Local.Format "2006-01-02" }}</span> <a href="{{.Permalink}}">{{.Title}}</a> <span class="blog-date">{{ .Date.Local.Format "2006-01-02" }}</span>
</li> </li>
{{ end }} {{ end }}

View File

@ -2,18 +2,15 @@
{{ partial "navbar.html" . }} {{ partial "navbar.html" . }}
{{ partial "header.html" . }} {{ partial "header.html" . }}
{{ $s := path.Dir (.Permalink | relURL) }} <article>
{{ $t := index (split $s "/") 2 }} <div class="content">
{{ $o := index (split $s "/") 1 }} {{ if ne .Lastmod .Date }}<div class="post-time-date">{{ .Lastmod.Format "2006-01-02" }}</div>{{ end }}
<h2>{{ .Title }}</h2>
{{ if eq $t "img" }} {{ .Content }}
{{ partial "img.html" . }} </div>
{{ else }} </article>
{{ .Content }}
{{ end }}
</div>
</div> </div>
{{ partial "footer.html" . }} {{ partial "footer.html" . }}
</body> </body>
</html> </html>

View File

@ -208,6 +208,7 @@ pre > code {
h2 { h2 {
line-height: 2rem; line-height: 2rem;
padding-bottom:2rem;
} }
span.tag { span.tag {
@ -1055,7 +1056,6 @@ table {
table { table {
border-spacing: 2px; border-spacing: 2px;
} }
li.blog-list-first { li.blog-list-first {
background-color: #fff; background-color: #fff;
@ -1123,3 +1123,4 @@ li.blog-menu button:hover {
a.menu-link-left-black span.icon-aiterm { a.menu-link-left-black span.icon-aiterm {
color: #fff700; color: #fff700;
} }