default.html (2589B) download
1<!DOCTYPE html>
2<html lang="{{ site.lang | default: 'en-US' }}">
3
4<head>
5 <meta charset="UTF-8">
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8
9 {% seo %}
10 <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
11 <!--[if lt IE 9]>
12 <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
13 <![endif]-->
14
15 <style>
16 .wrapper {
17 width: 1000px;
18 }
19
20 footer,
21 header .downloads,
22 header {
23 width: 360px;
24 }
25
26 section {
27 width: 550px;
28 }
29 </style>
30</head>
31
32<body>
33 <div class="wrapper">
34 <header>
35 <h1><a href="{{ '/' | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1>
36
37 {% if site.logo %}
38 <img src="{{ site.logo | relative_url }}" alt="Logo" />
39 {% endif %}
40
41 <p>{{ site.description | default: site.github.project_tagline }}</p>
42
43 <p>
44 <a href="{{ site.dub_url }}">
45 <img src="https://img.shields.io/dub/v/importsort-d?color=b03931" />
46 </a>
47 <a href="LICENSE.txt">
48 <img src="https://img.shields.io/dub/l/importsort-d" />
49 </a>
50 <a href="{{ site.github.commit_url }}">
51 <img src="https://img.shields.io/github/commit-activity/m/friedelschoen/importsort-d" />
52 </a>
53 </p>
54
55 {% if site.github.is_user_page %}
56 <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
57 {% endif %}
58
59 {% if site.show_downloads %}
60 <ul class="downloads">
61 <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
62 <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
63 <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
64 <li><a href="{{ site.dub_url }}">View On <strong>DUB.pm</strong></a></li>
65 </ul>
66 {% endif %}
67
68 <!--<ul>
69 <li><a href='https://importsort-d.dpldocs.info/'>Documentation</a></li>
70 <li><a href='changelog'>Changelog</a></li>
71 <li><a href='add-to-editor'>Add to your Editor</a></li>
72 </ul>-->
73 </header>
74 <section>
75 {{ content }}
76 </section>
77 <footer>
78 {% if site.github.is_project_page %}
79 <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
80 {% endif %}
81 <p><small>Hosted on GitHub Pages — Theme by <a
82 href="https://github.com/orderedlist">orderedlist</a></small></p>
83 </footer>
84 </div>
85 <script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
86</body>
87
88</html>