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
13
themes/terminal/layouts/projects/list.html
Normal file
13
themes/terminal/layouts/projects/list.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{{ define "main" }}
|
||||
<h1>Jects</h1>
|
||||
<ul>
|
||||
{{ range where .Site.RegularPages "Section" "projects" }}
|
||||
<li>
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
{{ if .Params.description }}
|
||||
<p>{{ .Params.description }}</p>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
11
themes/terminal/layouts/projects/single.html
Normal file
11
themes/terminal/layouts/projects/single.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{{ define "main" }}
|
||||
<article class="card-container">
|
||||
<header><h1>{{ .Title }}</h1></header>
|
||||
<div class="content-wrapper">
|
||||
<p>{{ .Date.Format "2006-01-02" }}</p>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
{{ end }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue