theme updates
This commit is contained in:
parent
4e7aebe824
commit
330851c010
|
@ -1,14 +1,11 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div id="sidebar"></div>
|
<div id="sidebar"></div>
|
||||||
<div id="content">
|
<div id="content" class="posts h-feed hfeed">
|
||||||
<h1>{{ .Title }}</h1>
|
<h1>{{ .Title }}</h1>
|
||||||
{{ range .Pages.ByPublishDate.Reverse }}
|
<ul>
|
||||||
<p>
|
{{ range .Pages }}
|
||||||
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
|
||||||
<a class="summary" href="{{ .RelPermalink }}">
|
|
||||||
<p>{{ .Summary }}</p>
|
|
||||||
</a>
|
|
||||||
</p>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<article class="h-entry">
|
<article class="h-entry">
|
||||||
<h1 class="p-name">{{ .Title }}</h1>
|
<h1 class="p-name">{{ .Title }}</h1>
|
||||||
<a class="p-author h-card hidden" href="https://yequari.com">yequari</a>
|
<a class="p-author h-card hidden" href="https://yequari.com">yequari</a>
|
||||||
<time class="dt-published" datetime={{.PublishDate }}>{{ .PublishDate }}</time>
|
<time class="dt-published" datetime={{.PublishDate }}>{{ .Lastmod.Format "Mon, Jan 02, 2006" }}</time>
|
||||||
<a class="u-url permalink" href={{ .RelPermalink }}>Permalink</a>
|
<a class="u-url permalink" href={{ .RelPermalink }}>Permalink</a>
|
||||||
<div class="e-content">
|
<div class="e-content">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
|
|
@ -9,7 +9,4 @@
|
||||||
<li class="social"><a href="/blog/atom.xml">RSS</a></li>
|
<li class="social"><a href="/blog/atom.xml">RSS</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="yw-widget-text yw-raw" data-yw-url="https://yequari.com">
|
|
||||||
<script src="https://yesterweb.org/js/widget.js"></script>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -6,9 +6,7 @@
|
||||||
<ul class="nav">
|
<ul class="nav">
|
||||||
<li class="nav"><a href="/">HOME</a></li>
|
<li class="nav"><a href="/">HOME</a></li>
|
||||||
<li class="nav"><a href="/posts">BLOG</a></li>
|
<li class="nav"><a href="/posts">BLOG</a></li>
|
||||||
<li class="nav"><a href="/tech">TECH</a></li>
|
<li class="nav"><a href="/now">NOW</a></li>
|
||||||
<li class="nav"><a href="/transformers">TRANSFORMERS</a></li>
|
|
||||||
<li class="nav"><a href="/now">ABOUT</a></li>
|
|
||||||
<li class="nav"><a href="/links">LINKS</a></li>
|
<li class="nav"><a href="/links">LINKS</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -234,6 +234,15 @@ pre code{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.pagination {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.page-item {
|
||||||
|
display: inline;
|
||||||
|
padding: 0.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
decorative stuff :)
|
decorative stuff :)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue