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

github.com/hadisinaee/avicenna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--layouts/partials/publications.html38
1 files changed, 0 insertions, 38 deletions
diff --git a/layouts/partials/publications.html b/layouts/partials/publications.html
deleted file mode 100644
index 01277da..0000000
--- a/layouts/partials/publications.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<div class="introduction">
- {{ with .Site.Params.publications }}
- <h4>Publications</h4>
-
- {{- range $index, $publications := $.Site.Params.publications -}}
- <div class="year">{{ $publications.year }}</div>
-
- <ul>
- {{ range $elem_index, $publication := $publications.paper }}
- <li>
- {{ if $publication.link }}
- <a href="{{ $publication.link }}" class="publications"> {{ $publication.name }}, </a>
- {{ else }}
- <p class="publications"> {{ $publication.name }}, </p>
- {{ end }}
- {{ $publication.dest | markdownify }}.
-
- {{ if or ($publication.code_link) $publication.blog_link }}
- <span class="code_blog">
- {{ with $publication.code_link }}
- [<a href="{{ $publication.code_link }}">code</a>]
- {{ end }}
-
- {{ with $publication.blog_link }}
- [<a href="{{ $publication.blog_link }}">blog</a>]
- {{ end }}
- </span>
- {{ end }}
-
- <span class="collaborators">
- {{ $publication.authors | markdownify }}
- </span>
- </li>
- {{ end }}
- </ul>
- {{- end -}}
- {{- end -}}
-</div>