Author taxonomy added
parent
3d5f5fa6ea
commit
51822e82e0
|
@ -1,6 +1,6 @@
|
||||||
[submodule "themes/hugo-coder"]
|
|
||||||
path = themes/hugo-coder
|
|
||||||
url = https://github.com/earnestma-forks/hugo-coder
|
|
||||||
[submodule "themes/hugo-cloak-email"]
|
[submodule "themes/hugo-cloak-email"]
|
||||||
path = themes/hugo-cloak-email
|
path = themes/hugo-cloak-email
|
||||||
url = https://github.com/martignoni/hugo-cloak-email.git
|
url = https://github.com/martignoni/hugo-cloak-email.git
|
||||||
|
[submodule "themes/hugo-coder"]
|
||||||
|
path = themes/hugo-coder
|
||||||
|
url = https://github.com/luizdepra/hugo-coder
|
||||||
|
|
|
@ -6,16 +6,17 @@ date: 2020-10-11
|
||||||
slug: "resources"
|
slug: "resources"
|
||||||
---
|
---
|
||||||
|
|
||||||
Under construction, keep checking back!
|
Keep checking back for new additions!
|
||||||
|
|
||||||
[Member Podcasts Directory](https://docs.google.com/spreadsheets/d/1dMUJKZYYNDDMKx6cR2YceqeTNpvRhc9DQ0RdZ3OMHpI/edit?usp=sharing)
|
## [Member Podcasts Directory](https://docs.google.com/spreadsheets/d/1dMUJKZYYNDDMKx6cR2YceqeTNpvRhc9DQ0RdZ3OMHpI/edit?usp=sharing)
|
||||||
|
|
||||||
|
{{< rawhtml >}}
|
||||||
|
<iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQj1YN2Ko9Vqw8Pwx-lrOTqK652tK0u-XLVVRbnJrBUS2vRSbYswtemKQ2xfPjCLVFYvbC-Iuh_3R5C/pubhtml?widget=true&headers=false" width=900 height=600</iframe>
|
||||||
|
{{< /rawhtml >}}
|
||||||
|
|
||||||
- [Add yours!](https://discordapp.com/channels/698946795350392852/698946795350392855/763881713780654100)
|
- [Add yours!](https://discordapp.com/channels/698946795350392852/698946795350392855/763881713780654100)
|
||||||
|
|
||||||
[The Podcast Starter Kit](http://bit.ly/thepodcaststarterkit) -- by @pixelsingaming
|
## [The Podcast Starter Kit](http://bit.ly/thepodcaststarterkit) -- by @pixelsingaming
|
||||||
|
|
||||||
[Dedicated Server Channel Applications](https://discordapp.com/channels/698946795350392852/708206652372942889/741161325765328907)
|
## [Dedicated Server Channel Applications](https://discordapp.com/channels/698946795350392852/708206652372942889/741161325765328907)
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
Contact: {{< cloakemail "" >}}
|
|
|
@ -1,10 +0,0 @@
|
||||||
<!-- authors taxonomy not (yet?) part of theme, manually hacked in lol -->
|
|
||||||
<div class="authors">
|
|
||||||
<i class="fa fa-user" aria-hidden="true"></i>
|
|
||||||
{{- range $index, $el := . -}}
|
|
||||||
{{- if gt $index 0 }}
|
|
||||||
<span class="separator">•</span>
|
|
||||||
{{- end }}
|
|
||||||
<a href="{{ ( printf "authors/%s/" ( . | urlize ) ) | relLangURL }}">{{ . }}</a>
|
|
||||||
{{- end -}}
|
|
||||||
</div>
|
|
|
@ -1,49 +0,0 @@
|
||||||
{{ define "title" }}
|
|
||||||
{{ .Title }} · {{ .Site.Title }}
|
|
||||||
{{ end }}
|
|
||||||
{{ define "content" }}
|
|
||||||
<section class="container post">
|
|
||||||
<article>
|
|
||||||
<header>
|
|
||||||
<div class="post-title">
|
|
||||||
<h1 class="title">{{ .Title }}</h1>
|
|
||||||
</div>
|
|
||||||
<div class="post-meta">
|
|
||||||
<div class="date">
|
|
||||||
<span class="posted-on">
|
|
||||||
<i class="fa fa-calendar" aria-hidden="true"></i>
|
|
||||||
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
|
||||||
{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
|
||||||
</time>
|
|
||||||
</span>
|
|
||||||
<span class="reading-time">
|
|
||||||
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
|
||||||
{{ i18n "reading_time" .ReadingTime }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<!-- manually added in for authors taxonomy listing, keep changes merged into this file as it overwrites the theme's file-->
|
|
||||||
{{ with .Page.Params.Authors }}{{ partial "taxonomy/authors.html" . }}{{ end }}
|
|
||||||
{{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
|
|
||||||
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
{{ if .Params.featured_image }}
|
|
||||||
<img src='{{ .Params.featured_image }}' alt="Featured image"/>
|
|
||||||
{{ end }}
|
|
||||||
{{ .Content }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
{{ partial "posts/series.html" . }}
|
|
||||||
{{ partial "posts/disqus.html" . }}
|
|
||||||
{{ partial "posts/commento.html" . }}
|
|
||||||
{{ partial "posts/utterances.html" . }}
|
|
||||||
</footer>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
{{ partial "posts/math.html" . }}
|
|
||||||
</section>
|
|
||||||
{{ end }}
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 561082dbfa31e5fdc818e8d882739e44e96e5cc9
|
Subproject commit 05170b5c79f066d3f72ee95fef0783989ca38952
|
Reference in New Issue