Switch to unified view

a b/docs/_layouts/default.html
1
<!DOCTYPE html>
2
<html lang="{{ site.lang | default: "en-US" }}">
3
  <head>
4
    <meta charset="UTF-8">
5
6
{% seo %}
7
    <link rel="preconnect" href="https://fonts.gstatic.com">
8
    <link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" as="style" type="text/css" crossorigin>
9
    <meta name="viewport" content="width=device-width, initial-scale=1">
10
    <meta name="theme-color" content="#157878">
11
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
12
    <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
13
    {% include head-custom.html %}
14
  </head>
15
  <body>
16
    <a id="skip-to-content" href="#content">Skip to the content.</a>
17
18
    <header class="page-header" role="banner">
19
      <h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
20
      <h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2>
21
      {% if site.show_downloads %}
22
        <a href="{{ site.github.zip_url }}" class="btn">Download .zip</a>
23
        <a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a>
24
      {% endif %}
25
      <a href="index" class="btn">Main Page</a>
26
      <a href="conversation_example" class="btn">Conversation Example</a>
27
      <a href="installation-guide" class="btn">Installation Guide</a>
28
      {% if site.github.is_project_page %}
29
        <a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
30
      {% endif %}
31
    </header>
32
33
    <main id="content" class="main-content" role="main">
34
      {{ content }}
35
36
      <footer class="site-footer">
37
        {% if site.github.is_project_page %}
38
          <span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by MedBot team.</span>
39
        {% endif %}
40
        <span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span>
41
      </footer>
42
    </main>
43
  </body>
44
</html>