citra-emu
/
citra-web
Archived
1
0
Fork 0
This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
citra-web/site/themes/citra-bs-theme/layouts/entry/single.html

55 lines
2.5 KiB
HTML

{{ define "main" }}
{{ .Render "header" }}
<div class="entry-content">
{{ .Content }}
</div>
{{ $author := index .Site.Data.authors ( .Params.author | default "" ) }}
{{ $coauthor := index .Site.Data.authors ( .Params.coauthor | default "" ) }}
{{ $coauthor2 := index .Site.Data.authors ( .Params.coauthor2 | default "" ) }}
<div class="entry-written-by">
{{ if $author }}
<a href="https://community.citra-emu.org/u/{{ $author.key }}">
<img src="{{ $author.avatar }}" class="avatar">
</a>
{{ end }}
{{ if $coauthor }}
<a href="https://community.citra-emu.org/u/{{ $coauthor.key }}">
<img src="{{ $coauthor.avatar }}" class="avatar">
</a>
{{ end }}
{{ if $coauthor2 }}
<a href="https://community.citra-emu.org/u/{{ $coauthor2.key }}">
<img src="{{ $coauthor2.avatar }}" class="avatar">
</a>
{{ end }}
{{ if and (and $author $coauthor) $coauthor2 }}
<p>Written by <a href="https://community.citra-emu.org/u/{{ $author.key }}">{{ $author.name }}</a>, <a href="https://community.citra-emu.org/u/{{ $coauthor.key }}">{{ $coauthor.name }}</a> and <a href="https://community.citra-emu.org/u/{{ $coauthor2.key }}">{{ $coauthor2.name }}</a> on {{ .Date.Format "Monday January 02, 2006" }}</p>
{{ else if and $author $coauthor }}
<p>Written by <a href="https://community.citra-emu.org/u/{{ $author.key }}">{{ $author.name }}</a> and <a href="https://community.citra-emu.org/u/{{ $coauthor.key }}">{{ $coauthor.name }}</a> on {{ .Date.Format "Monday January 02, 2006" }}</p>
{{ else if $author }}
<p>Written by <a href="https://community.citra-emu.org/u/{{ $author.key }}">{{ $author.name }}</a> on {{ .Date.Format "Monday January 02, 2006" }}</p>
{{ else }}
<p>No author was provided. Written on {{ .Date.Format "Monday January 02, 2006" }}</p>
{{ end }}
</div>
{{ if .Params.forum }}
<div class="entry-comments">
<div id="discourse-comments"></div>
<script type="text/javascript">
DiscourseEmbed = { discourseUrl: 'https://community.citra-emu.org/', topicId: "{{ .Params.forum }}" };
(function() {
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
})();
</script>
</div>
{{ end }}
{{ end }}