Update
This commit is contained in:
parent
ad769e95d8
commit
9e8626d8ba
21 changed files with 2767 additions and 1523 deletions
6
layouts/partials/archetypes/base-meta.md
Normal file
6
layouts/partials/archetypes/base-meta.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Meta
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
subtitle:
|
||||
summary:
|
||||
date: {{ .Date }}
|
||||
draft: true
|
8
layouts/partials/archetypes/base-resources.md
Normal file
8
layouts/partials/archetypes/base-resources.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Resources
|
||||
featured_image: {{ .Name }}
|
||||
resources:
|
||||
- name: {{ .Name }}
|
||||
alt:
|
||||
src: images/{{ .Name }}.*
|
||||
params:
|
||||
attr:
|
13
layouts/partials/archetypes/base-taxonomies.md
Normal file
13
layouts/partials/archetypes/base-taxonomies.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Taxonomies
|
||||
organisations:
|
||||
-
|
||||
locations:
|
||||
-
|
||||
colleagues:
|
||||
-
|
||||
areas:
|
||||
-
|
||||
skills:
|
||||
-
|
||||
tags:
|
||||
-
|
|
@ -42,6 +42,17 @@
|
|||
</section>
|
||||
{{- end -}}
|
||||
|
||||
{{- if .GetTerms "areas" -}}
|
||||
<section class="article-footer__links">
|
||||
<h2 id="item-areas-title">Areas</h2>
|
||||
<ul>
|
||||
{{- range ( .GetTerms "areas" ).ByTitle -}}
|
||||
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
|
||||
{{- end -}}
|
||||
</ul>
|
||||
</section>
|
||||
{{- end -}}
|
||||
|
||||
{{- if .GetTerms "organisations" -}}
|
||||
<section id="post-organisations" class="article-footer__organisations" aria-labelledby="post-organisations-title">
|
||||
<h2 id="post-organisations-title">Organisations</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue