-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathdefault.html
More file actions
107 lines (86 loc) · 3.92 KB
/
default.html
File metadata and controls
107 lines (86 loc) · 3.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>EditorConfig{% if page.title %}: {{ page.title }}{% endif %}</title>
<meta name="author" content="EditorConfig Team">
{% if page.description %}
<meta name="description" content="{{ page.description }}">
{% endif %}
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/scrollspy.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32136778-1']);
_gaq.push(['_setDomainName', 'editorconfig.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="container">
<div id="sidebar">
<div itemscope itemtype="http://schema.org/Organization">
<a class="logo" href=""><img itemprop="logo" src="logo.png" alt="EditorConfig mouse head"></a>
</div>
<nav>
<h4><a href="">Page Contents</a></h4>
<ol data-scrollspy="scrollspy">
<li><a href="#overview">What is EditorConfig?</a></li>
<li><a href="#example-file">Example File</a></li>
<li><a href="#file-location">File Location</a></li>
<li><a href="#file-format-details">File Format Details</a></li>
<li><a href="#demo">Try It Out</a></li>
<li><a href="#download">Download a Plugin</a></li>
<li><a href="#contributing">Contributing</a></li>
</ol>
</nav>
<a href="https://github.com/editorconfig/" class="github button">
<strong>Project Page on Github</strong>
<img src="fork-editorconfig.png" alt="mouse with fork">
<div style="clear: both;"></div>
</a>
<a href="https://twitter.com/EditorConfig" class="twitter button">
<strong>Follow Us on Twitter</strong>
<img src="tweet-editorconfig.png" alt="mouse riding bird">
<div style="clear: both;"></div>
</a>
<!-- tweet button -->
<a href="https://twitter.com/share" class="twitter-share-button social-sharing-button" data-via="EditorConfig" data-size="medium">Tweet</a>
<!-- Google plus one -->
<div class="g-plusone social social-sharing-button" data-size="medium"></div>
<div style="clear: both;"></div>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
<div id="content">
<header>
<h1>EditorConfig</h1>
</header>
<div id="main" role="main">
{{ content }}
</div>
<footer>
The EditorConfig website is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 Unported License</a>.
</footer>
</div>
</div>
<script src="js/demo.js"></script>
</body>
</html>