From e2c06d2681e18946ab6c3e3e6075aed92a4d13be Mon Sep 17 00:00:00 2001 From: Karl Hallsby Date: Sun, 3 Oct 2021 00:35:46 -0500 Subject: Change to al-folio theme Theme at: https://github.com/alshedivat/al-folio --- _includes/footer.html | 27 +++++++++++ _includes/head.html | 74 ++++++++++++++++++++++++++++++ _includes/header.html | 92 ++++++++++++++++++++++++++++++++++++++ _includes/news.html | 24 ++++++++++ _includes/pagination.html | 17 +++++++ _includes/projects.html | 32 +++++++++++++ _includes/projects_horizontal.html | 40 +++++++++++++++++ _includes/scripts/bootstrap.html | 4 ++ _includes/scripts/jquery.html | 2 + _includes/scripts/mansory.html | 6 +++ _includes/scripts/mathjax.html | 12 +++++ _includes/scripts/misc.html | 15 +++++++ _includes/selected_papers.html | 4 ++ _includes/social.html | 17 +++++++ 14 files changed, 366 insertions(+) create mode 100644 _includes/footer.html create mode 100644 _includes/head.html create mode 100644 _includes/header.html create mode 100644 _includes/news.html create mode 100644 _includes/pagination.html create mode 100644 _includes/projects.html create mode 100644 _includes/projects_horizontal.html create mode 100644 _includes/scripts/bootstrap.html create mode 100644 _includes/scripts/jquery.html create mode 100644 _includes/scripts/mansory.html create mode 100644 _includes/scripts/mathjax.html create mode 100644 _includes/scripts/misc.html create mode 100644 _includes/selected_papers.html create mode 100644 _includes/social.html (limited to '_includes') diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..2e34521 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,27 @@ +{% if site.footer_fixed %} + +{% else %} + +{% endif %} diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..c629888 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,74 @@ + + + + + +{% if site.title == "blank" %} + {{ site.first_name }} {{ site.middle_name }} {{ site.last_name }} +{% else %} + {{ site.title }} +{% endif %} +{% if page.title != "blank" and page.url != "/" %} + | {{ page.title }} +{% endif %} + + + + +{% if site.serve_og_meta %} + + + + + + +{% endif %} + + + + + + + + + + + + + + +{% if site.icon != empty %} + +{% endif %} + + + + +{% include scripts/jquery.html %} + + +{% if site.enable_darkmode %} + + +{% endif %} + +{% if site.enable_google_analytics %} + + + +{% endif %} + +{% if site.enable_panelbear_analytics %} + + + +{% endif %} diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..31e1fd2 --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,92 @@ +
+ + + + +
diff --git a/_includes/news.html b/_includes/news.html new file mode 100644 index 0000000..e1fc80b --- /dev/null +++ b/_includes/news.html @@ -0,0 +1,24 @@ +
+

news

+ {% if site.news %} +
+ + {% assign news = site.news | reverse %} + {% for item in news limit: site.news_limit %} + + + + + {% endfor %} +
{{ item.date | date: "%b %-d, %Y" }} + {% if item.inline %} + {{ item.content | remove: '

' | remove: '

' | emojify }} + {% else %} + {{ item.title }} + {% endif %} +
+
+ {% else %} +

No news so far...

+ {% endif %} +
diff --git a/_includes/pagination.html b/_includes/pagination.html new file mode 100644 index 0000000..6761017 --- /dev/null +++ b/_includes/pagination.html @@ -0,0 +1,17 @@ +{% if paginator.total_pages > 1 %} + +{% endif %} diff --git a/_includes/projects.html b/_includes/projects.html new file mode 100644 index 0000000..55a1461 --- /dev/null +++ b/_includes/projects.html @@ -0,0 +1,32 @@ +
+ {% if project.redirect %} + + {% else %} + + {% endif %} + + +
diff --git a/_includes/projects_horizontal.html b/_includes/projects_horizontal.html new file mode 100644 index 0000000..edecb9b --- /dev/null +++ b/_includes/projects_horizontal.html @@ -0,0 +1,40 @@ +
+ {% if project.redirect %} + + {% else %} + + {% endif %} + diff --git a/_includes/scripts/bootstrap.html b/_includes/scripts/bootstrap.html new file mode 100644 index 0000000..2c5d4ee --- /dev/null +++ b/_includes/scripts/bootstrap.html @@ -0,0 +1,4 @@ + + + + diff --git a/_includes/scripts/jquery.html b/_includes/scripts/jquery.html new file mode 100644 index 0000000..8de7788 --- /dev/null +++ b/_includes/scripts/jquery.html @@ -0,0 +1,2 @@ + + diff --git a/_includes/scripts/mansory.html b/_includes/scripts/mansory.html new file mode 100644 index 0000000..5a93a9e --- /dev/null +++ b/_includes/scripts/mansory.html @@ -0,0 +1,6 @@ +{% if site.enable_mansory %} + + + + +{% endif %} diff --git a/_includes/scripts/mathjax.html b/_includes/scripts/mathjax.html new file mode 100644 index 0000000..53db9e0 --- /dev/null +++ b/_includes/scripts/mathjax.html @@ -0,0 +1,12 @@ +{% if site.enable_math %} + + + + +{% endif %} diff --git a/_includes/scripts/misc.html b/_includes/scripts/misc.html new file mode 100644 index 0000000..260ce1b --- /dev/null +++ b/_includes/scripts/misc.html @@ -0,0 +1,15 @@ +{% if site.enable_tooltips %} + + +{% endif %} + +{% if site.enable_medium_zoom %} + + + +{% endif %} + + + diff --git a/_includes/selected_papers.html b/_includes/selected_papers.html new file mode 100644 index 0000000..0093c87 --- /dev/null +++ b/_includes/selected_papers.html @@ -0,0 +1,4 @@ +
+

selected publications

+ {% bibliography -f papers -q @*[selected=true]* %} +
diff --git a/_includes/social.html b/_includes/social.html new file mode 100644 index 0000000..c783058 --- /dev/null +++ b/_includes/social.html @@ -0,0 +1,17 @@ +{% if site.email %}{% endif %} +{% if site.orcid_id %}{% endif %} +{% if site.scholar_userid %}{% endif %} +{% if site.publons_id %}{% endif %} +{% if site.research_gate_profile %}{% endif %} +{% if site.github_username %}{% endif %} +{% if site.linkedin_username %}{% endif %} +{% if site.twitter_username %}{% endif %} +{% if site.medium_username %}{% endif %} +{% if site.quora_username %}{% endif %} +{% if site.blogger_url %}{% endif %} +{% if site.work_url %}{% endif %} +{% if site.wikidata_id %}{% endif %} +{% if site.strava_userid %}{% endif %} +{% if site.keybase_username %}{% endif %} +{% if site.gitlab_username %}{% endif %} +{% if site.dblp_url %}{% endif %} -- cgit v1.2.3