Skip to content

Commit 067369b

Browse files
committed
Added custom HTML with logo image
1 parent 0d9008f commit 067369b

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

layouts/default.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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,maximum-scale=2">
8+
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
9+
10+
{% seo %}
11+
{% include head-custom.html %}
12+
</head>
13+
14+
<body>
15+
16+
<!-- HEADER -->
17+
<div id="header_wrap" class="outer">
18+
<header class="inner">
19+
{% if site.github.is_project_page %}
20+
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
21+
{% endif %}
22+
23+
<h1 id="project_title"><img src='images/logo.png' width='64' height='64'/>{{ site.title | default: site.github.repository_name }}</h1>
24+
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
25+
26+
{% if site.show_downloads %}
27+
<section id="downloads">
28+
<a class="zip_download_link" href="{{ site.github.zip_url }}">Download this project as a .zip file</a>
29+
<a class="tar_download_link" href="{{ site.github.tar_url }}">Download this project as a tar.gz file</a>
30+
</section>
31+
{% endif %}
32+
</header>
33+
</div>
34+
35+
<!-- MAIN CONTENT -->
36+
<div id="main_content_wrap" class="outer">
37+
<section id="main_content" class="inner">
38+
{{ content }}
39+
</section>
40+
</div>
41+
42+
<!-- FOOTER -->
43+
<div id="footer_wrap" class="outer">
44+
<footer class="inner">
45+
{% if site.github.is_project_page %}
46+
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
47+
{% endif %}
48+
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
49+
</footer>
50+
</div>
51+
</body>
52+
</html>

0 commit comments

Comments
 (0)