1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {{ partial "header.html" . }}
- {{ partial "navbar.html" . }}
- <article class="article article-project" itemscope itemtype="http://schema.org/Article">
- {{ partial "page_header.html" . }}
- <div class="article-container">
- {{ with .Params.external_link }}
- <a class="btn btn-outline-primary my-1" href="{{ . }}" target="_blank" rel="noopener">{{ i18n "open_project_site" }}</a>
- {{ end }}
- <div class="article-style" itemprop="articleBody">
- {{ .Content }}
- </div>
- {{ partial "tags.html" . }}
- {{ $page := . }}
- {{ $project := .Slug }}
- {{ if not $project }}{{/* If user did not explicitly set `slug` in front matter. */}}
- {{ $project = .File.TranslationBaseName }}
- {{ end }}
- {{ if eq $project "index" }}{{/* Check if using dir-based page bundles. */}}
- {{ $project = delimit (last 1 (split (substr .Dir 0 -1) "/")) "" }}
- {{ end }}
- {{ $project_path := .RelPermalink }}
- {{ if (.Site.Params.projects.list_children | default true) }}
- {{ $items := where (where .Site.RegularPages "Type" "publication") ".Params.projects" "intersect" (slice $project) }}
- {{ $items := $items | union (where (where .Site.RegularPages "Type" "publication") ".Params.url_project" $project_path) }}
- {{ $pubs_len := len $items }}
- {{ if ge $pubs_len 1 }}
- <h2>{{ (i18n "publications") }}</h2>
- {{ range $items }}
- {{ if eq $page.Site.Params.projects.publication_format 1 }}
- {{ partial "publication_li_detailed" . }}
- {{ else if eq $page.Site.Params.projects.publication_format 2 }}
- {{ partial "publication_li_apa" . }}
- {{ else if eq $page.Site.Params.projects.publication_format 3 }}
- {{ partial "publication_li_mla" . }}
- {{ else if eq $page.Site.Params.projects.publication_format 4 }}
- {{ partial "publication_li_stream" . }}
- {{ else }}
- {{ partial "publication_li_simple" . }}
- {{ end }}
- {{ end }}
- {{ end }}
- {{ $items := where (where .Site.RegularPages "Type" "talk") ".Params.projects" "intersect" (slice $project) }}
- {{ $items := $items | union (where (where .Site.RegularPages "Type" "talk") ".Params.url_project" $project_path) }}
- {{ $talks_len := len $items }}
- {{ if ge $talks_len 1 }}
- <h2>{{ (i18n "talks") }}</h2>
- {{ range sort $items ".Params.time_start" "desc" }}
- {{ if eq $page.Site.Params.projects.talk_format 1 }}
- {{ partial "talk_li_detailed" . }}
- {{ else if eq $page.Site.Params.projects.talk_format 2 }}
- {{ partial "talk_li_stream" . }}
- {{ else }}
- {{ partial "talk_li_simple" . }}
- {{ end }}
- {{ end }}
- {{ end }}
- {{ end }}
- </div>
- </article>
- {{ if .Site.Params.section_pager }}
- <div class="article-container article-widget">
- {{ partial "section_pager.html" . }}
- </div>
- {{ end }}
- {{ partial "footer_container.html" . }}
- {{ partial "footer.html" . }}
|