|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}"> |
| 7 | + |
| 8 | + <title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title> |
| 9 | + |
| 10 | + <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}"> |
| 11 | + <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}"> |
| 12 | + <link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | relative_url }}"> |
| 13 | + |
| 14 | + <!-- Google Fonts for clean academic look --> |
| 15 | + <link rel="preconnect" href="https://fonts.googleapis.com"> |
| 16 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
| 17 | + <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&family=Source+Serif+Pro:wght@400;600&display=swap" rel="stylesheet"> |
| 18 | + |
| 19 | + {% seo %} |
| 20 | +</head> |
| 21 | + |
| 22 | +<body> |
| 23 | + <header class="site-header"> |
| 24 | + <div class="header-content"> |
| 25 | + <h1 class="site-title"><a href="{{ "/" | relative_url }}">{{ site.title }}</a></h1> |
| 26 | + <p class="site-description">{{ site.description }}</p> |
| 27 | + </div> |
| 28 | + </header> |
| 29 | + |
| 30 | + <nav class="site-nav"> |
| 31 | + <ul> |
| 32 | + <li><a href="{{ "/" | relative_url }}">Home</a></li> |
| 33 | + <li><a href="{{ "/people" | relative_url }}">People</a></li> |
| 34 | + <li><a href="{{ "/publications" | relative_url }}">Publications</a></li> |
| 35 | + <li><a href="{{ "/projects" | relative_url }}">Projects</a></li> |
| 36 | + </ul> |
| 37 | + </nav> |
| 38 | + |
| 39 | + <main class="site-content"> |
| 40 | + {{ content }} |
| 41 | + </main> |
| 42 | + |
| 43 | + <footer class="site-footer"> |
| 44 | + <div class="footer-content"> |
| 45 | + <p>© {{ site.time | date: "%Y" }} {{ site.title }}. All rights reserved.</p> |
| 46 | + <p> |
| 47 | + <a href="https://github.com/{{ site.github_username }}" target="_blank" rel="noopener">GitHub</a> |
| 48 | + </p> |
| 49 | + </div> |
| 50 | + </footer> |
| 51 | +</body> |
| 52 | +</html> |
0 commit comments