microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.0-py

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/_includes/base.njk

29lines · modecode

1<!DOCTYPE html>
2<html lang="en" class="h-100">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>{% if title %}{{ title }} - {% endif %}{{ site.title }}</title>
7 <meta name="description" content="{% if description %}{{ description }}{% else %}{{ site.description }}{% endif %}">
8 <link rel="stylesheet" href="{{ '/assets/css/style.css' | url }}?v={% version %}">
9</head>
10<body class="h-100">
11 <header class="site-header">
12 <div class="container">
13 <a href="{{ '/' | url }}" class="site-title">TypeAgent</a>
14 <nav class="main-nav">
15 <ul>
16 <li><a href="{{ '/' | url }}">Docs</a></li>
17 <li><a href="{{ site.github }}">GitHub</a></li>
18 </ul>
19 </nav>
20 </div>
21 </header>
22
23 <main class="content">
24 {{ content | safe }}
25 </main>
26
27 {% include "footer.njk" %}
28</body>
29</html>
30