-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
66 lines (52 loc) · 2.48 KB
/
default.html
File metadata and controls
66 lines (52 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
{% include meta.html %}
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
<link rel="icon" type="image/png" href="/images/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/images/favicon-16x16.png" sizes="16x16">
{% include analytics.html %}
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!-- Created with Jekyll Now - http://github.com/barryclark/jekyll-now -->
</head>
<body>
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
<a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.avatar }}" /></a>
<div class="site-info">
<!--<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>-->
<p class="site-description">{{ site.description }}</p>
</div>
<a class="download-button" style="float:right;" href="https://github.com/method5/method5/archive/master.zip" onclick="trackOutboundLink('https://github.com/method5/method5/archive/master.zip'); return false;"><img width=100px src="/images/download_button.png"></a>
<nav>
<!--<a href="{{ site.baseurl }}/">Home</a>-->
<a href="{{ site.baseurl }}/why_method5">Why Method5?</a>
<a href="{{ site.baseurl }}/examples">Examples</a>
<a href="{{ site.baseurl }}/install">Install</a>
<a href="https://github.com/method5/method5/blob/master/user_guide.md">User Guide</a>
<a href="{{ site.baseurl }}/roadmap">Roadmap</a>
<a href="{{ site.baseurl }}/contribute">Contribute</a>
<a href="{{ site.baseurl }}/blog">Blog</a>
<a href="{{ site.baseurl }}/about">About</a>
</nav>
</header>
</div>
</div>
<div id="main" role="main" class="container">
{{ content }}
</div>
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
{% include svg-icons.html %}
</footer>
</div>
</div>
</body>
</html>