You've already forked twofactorauth
mirror of
https://github.com/token2/twofactorauth.git
synced 2026-03-13 11:16:05 -07:00
95 lines
3.1 KiB
HTML
95 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="description" content="{{ site.description }}" />
|
|
<meta name="author" content="{{ site.author }}" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta property="og:title" content="{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:image" content="{{ site.url }}/{{ site.img }}">
|
|
<meta property="og:url" content="{{ site.url }}">
|
|
<meta property="og:description" content="{{ page.description }}">
|
|
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}</title>
|
|
|
|
<link rel="stylesheet" href="/lib/semantic/css/semantic.no-resp.css" />
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" />
|
|
<link rel="stylesheet" href="/css/base.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="ui fixed transparent inverted teal main menu">
|
|
<div class="menu">
|
|
<div class="right menu">
|
|
<a href="{{ site.repo }}" class="item">
|
|
<i class="github icon"></i>
|
|
Contribute
|
|
</a>
|
|
</div>
|
|
|
|
<a href="/" class="item">
|
|
<i class="home icon"></i>
|
|
Home
|
|
</a>
|
|
|
|
<div class="ui dropdown item">
|
|
<i class="dropdown icon"></i>
|
|
Categories
|
|
<div class="menu">
|
|
{% for section in site.data.main.sections %}
|
|
<a href="{% if forloop.first %}/#{% else %}#{{ section.id }}{% endif %}" class="item">
|
|
<i class="{{ section.icon }} icon"></i>
|
|
{{ section.title }}
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<a href="#" class="item">
|
|
<i class="flag icon"></i>
|
|
International
|
|
</a>
|
|
|
|
<a href="#" class="item">
|
|
<i class="checked checkbox icon"></i>
|
|
Checklist
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
{{ content }}
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="footer ui basic segment">
|
|
See an issue or want to add to this website? Fork it or create an issue on
|
|
<a href="{{ site.repo }}">GitHub</a>.
|
|
</div>
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
<div class="footer ui basic segment">
|
|
Made with tea
|
|
<i class="leaf circular small icon"></i>
|
|
by
|
|
<a href="http://joshldavis.com">Josh Davis</a>
|
|
and love
|
|
<i class="heart circular small icon"></i>
|
|
from some awesome
|
|
<a href="{{ site.repo }}/graphs/contributors">Contributors</a>.
|
|
</div>
|
|
|
|
<!-- 3rd Party Libraries -->
|
|
<script src="//code.jquery.com/jquery-2.1.0.js"></script>
|
|
<script src="/lib/semantic/javascript/semantic.js"></script>
|
|
|
|
<!-- TFA JS -->
|
|
<script src="/js/app.js"></script>
|
|
{% for script in page.scripts %}{{ script }}{% endfor %}
|
|
</body>
|
|
</html>
|