abdullahtarawneh.com/layouts/work/list.html

25 lines
952 B
HTML
Raw Normal View History

2021-12-13 11:17:15 +00:00
{{ define "main" }}
<main id="work">
<header class="section page-header">
<div class="container">
<h1 class="page-title">{{ .Title }}</h1>
2021-12-13 11:30:50 +00:00
<a href="https://resume.abdullahtarawneh.com" class="resume-link">One-page Resume (HTML)</a>
2021-12-13 11:17:15 +00:00
</div>
</header>
<section class="section timeline">
<div class="container">
{{ range .Pages }}
<article class="timeline-item {{ .Permalink | relURL | anchorize }}">
<span class="timeline-item__daterange">
<datetime class="timeline-item__date">{{ .Params.start }}</datetime> <datetime class="timeline-item__date">{{ .Params.end }}</datetime>
</span>
<span class="timeline-item__at">at {{ .Params.at }}</span>
<h2 class="timeline-item__title">{{ .Params.position }}</h2>
<p class="timeline-item__summary">{{.Summary}}</p>
<a class="timeline-item__readmore" href="{{ .Permalink }}">Read more...</a>
</article>
{{ end }}
</div>
</section>
</main>
{{ end }}