- {{ end }}
-
- {{ if .Params.url_pdf | or .Params.url_slides | or .Params.url_video | or .Params.url_custom }}
-
+
+
{{ .Title }}
+
+ {{ with .Params.authors }}
+ {{ delimit . ", " }}
+ {{ end }}
+
+
+ {{ partial "share.html" . }}
+
- {{ partial "section_pager.html" . }}
+ {{ if .Params.image }}
+

+ {{end}}
+
+ {{ if .Params.abstract }}
+
{{ i18n "abstract" }}
+
{{ .Params.abstract }}
+ {{ else }}
+
+ {{ end }}
+
+
+
+
+
+
{{ i18n "date" }}
+
+ {{ .Date.Format $.Site.Params.date_format }}
+
+
+
+
+
+
+
+
+
+
+ {{ with .Params.location }}
+
+
+
+
+
{{ i18n "location" }}
+
{{ . | markdownify }}
+
+
+
+
+
+ {{ end }}
+
+ {{ if .Params.url_pdf | or .Params.url_slides | or .Params.url_video | or .Params.url_custom }}
+
+
+
+
+
{{ i18n "links" }}
+
+
+ {{ partial "talk_links" (dict "content" . "is_list" 0) }}
+
+
+
+
+
+
+
+ {{ end }}
+
+
+
+
+ {{ .Content }}
+
+ {{ partial "section_pager.html" . }}
+
+
{{ partial "footer_container.html" . }}
{{ partial "footer.html" . }}
diff --git a/static/css/hugo-academic.css b/static/css/hugo-academic.css
index 96f2fbf3..b009f874 100644
--- a/static/css/hugo-academic.css
+++ b/static/css/hugo-academic.css
@@ -177,6 +177,18 @@ blockquote p:last-child {
}
}
+.universal-wrapper {
+ margin: 0 auto;
+ padding-right: 15px;
+ padding-left: 15px;
+ width: 100%;
+}
+@media only screen and (min-width: 1001px) {
+ .universal-wrapper {
+ width: 1000px;
+ }
+}
+
/*************************************************
* Home Sections
**************************************************/
@@ -196,20 +208,24 @@ blockquote p:last-child {
animation: intro 0.3s both;
animation-delay: 0.15s;
}
-@media screen and (max-width: 768px) {
- .home-section {
- padding: 60px 0 60px 0;
- }
-}
.home-section:first-of-type {
- padding-top: 0;
+ padding-top: 50px;
}
.home-section:nth-of-type(even) {
background-color: rgb(247, 247, 247);
}
+@media screen and (max-width: 768px) {
+ .home-section {
+ padding: 60px 0 60px 0;
+ }
+ .home-section:first-of-type {
+ padding-top: 40px;
+ }
+}
+
.section-heading h1 {
margin: 0 0 10px 0;
}
@@ -365,6 +381,12 @@ article {
animation-delay: 0.15s;
}
+.article-container {
+ max-width: 760px;
+ padding: 1rem 20px 0 20px;
+ margin: 0 auto 0 auto;
+}
+
.article-title {
font-size: 1.75rem;
}