Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/ghazal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/about/publications.html')
-rw-r--r--layouts/partials/about/publications.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layouts/partials/about/publications.html b/layouts/partials/about/publications.html
new file mode 100644
index 0000000..bb6d140
--- /dev/null
+++ b/layouts/partials/about/publications.html
@@ -0,0 +1,27 @@
+{{ if .Params.publications }}
+<h2 style="border-bottom: solid 3px; text-transform: uppercase;">
+ <i>{{ partial "icons/book" . }}</i>Publications
+</h2>
+
+{{ range .Params.publications }} {{ range $key, $val := . }}
+<h3 style="font-variant: small-caps;">{{ $key }}</h3>
+<ol>
+ {{ range sort $val "date" "desc" }}
+ <li>
+ <p style="margin: 1em; text-indent: -0.5em;">
+ {{ .date }}. {{ .author | markdownify }}. {{ if .url }}<a
+ href="{{ .url }}"
+ >{{ .title }}</a
+ >{{ else }} <u>{{- .title -}}</u> {{end -}}. {{ .journal }}.
+ </p>
+ {{ if .abstract }}
+ <blockquote style="margin: 0 0 0 1em; font-size: 0.9em;">
+ <strong style="font-variant: small-caps; text-decoration: underline;"
+ >Abstract</strong
+ ><p style="margin: 0;">{{ .abstract }}</p>
+ </blockquote>
+ {{ end }}
+ </li>
+ {{ end }}
+</ol>
+{{ end }} {{ end }} {{ end }}