mirror of
https://github.com/JimenezJC/mshj_blog.git
synced 2025-12-06 11:09:56 -05:00
Initial Blog Commit
This commit is contained in:
commit
07775036ce
92 changed files with 4980 additions and 0 deletions
19
themes/terminal/layouts/categories/list.html
Normal file
19
themes/terminal/layouts/categories/list.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{{ define "main" }}
|
||||
<div class="card-container">
|
||||
<header>Category: {{ .Title }}</header>
|
||||
<div class="content-wrapper">
|
||||
<ul class="menu-list">
|
||||
{{ range .Pages }}
|
||||
<li class = "post-list">
|
||||
<h3 class="post-list-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||
<span class="meta-info">{{ .Date.Format "2006-01-02" }}</span>
|
||||
{{ if .Params.description }}
|
||||
<p>{{ .Params.description }}</p>
|
||||
{{ end }}
|
||||
</li>
|
||||
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue