mirror of
https://github.com/michivonah/website-v3.git
synced 2025-12-22 21:36:28 +01:00
17 lines
No EOL
680 B
HTML
17 lines
No EOL
680 B
HTML
<div id="projects" class="projects">
|
|
<h1 class="fade-up">{{ T "projects" }}</h1>
|
|
<div class="tag-filter fade-up">
|
|
{{ range .Site.Data.tags }}
|
|
<div class="tag">
|
|
<input class="tag-checkbox" id="tag-{{ .slug }}" value="{{ .slug }}" type="checkbox" {{ if .checked }} checked {{ end }}>
|
|
<label class="tag-label" for="tag-{{ .slug }}" >{{ .title }}</label>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="project-list">
|
|
</div>
|
|
<div class="fade-up">
|
|
<button class="project-load-btn" alt='{{ T "load-more" }}' title='{{ T "load-more" }}' name='{{ T "load-more" }}'>{{ T "load-more" }}</button>
|
|
</div>
|
|
</div> |