Using resume theme as base :3

This commit is contained in:
2023-09-19 20:20:03 -07:00
parent 41036e7411
commit b8de5c0175
13 changed files with 154 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{{ with .Site.GetPage "/education" }}
<h1 class="section-header" id="education">{{.Title}}</h1>
<div class="section">
<ul>
{{ range (.Paginate (.Pages.ByParam "rank")).Pages }}
<li style="list-style-type: none;">
<a><strong class="bigger">{{.Params.Institution}}</strong></a>
{{ if .Params.Degree }}
<p class="text-muted">{{.Params.Degree}} acheived {{.Params.When}}</p>
{{ end }}
{{ if .Params.Certlink }}
<a href="{{.Params.Certlink}}">Certificate Link</a>
{{ end }}
{{ if .Params.Certid }}
<p class="text-muted">Certificate id: {{.Params.Certid}}</p>
{{ end }}
</li>
{{ end }}
</ul>
</div>
{{ end }}