Skip to content

Commit 1914f00

Browse files
committed
fix footer
1 parent 6498482 commit 1914f00

File tree

5 files changed

+26
-19
lines changed

5 files changed

+26
-19
lines changed

_includes/favicon.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- thumbs up dude! -->
21
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/images/favicon/apple-touch-icon-57x57.png" />
32
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/images/favicon/apple-touch-icon-114x114.png" />
43
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/images/favicon/apple-touch-icon-72x72.png" />
@@ -7,7 +6,6 @@
76
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/images/favicon/apple-touch-icon-152x152.png" />
87
<link rel="icon" type="image/png" href="/images/favicon/favicon-32x32.png" sizes="32x32" />
98
<link rel="icon" type="image/png" href="/images/favicon/favicon-16x16.png" sizes="16x16" />
10-
<meta name="application-name" content="Mapsam"/>
9+
<meta name="application-name" content="mapsam.com"/>
1110
<meta name="msapplication-TileColor" content="#FFFFFF" />
12-
<meta name="msapplication-TileImage" content="/images/favicon/mstile-144x144.png" />
13-
<!-- thumbs down -->
11+
<meta name="msapplication-TileImage" content="/images/favicon/mstile-144x144.png" />

_includes/footer.html

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<!DOCTYPE html>
2-
<html>
31
<head>
42
<title>{{ page.title }}</title>
53
<meta property="og:title" content="{{ page.title }}" />
@@ -23,4 +21,3 @@
2321
{% for css in page.extra_css_cdn %}<link rel="stylesheet" href="{{ css }}">{% endfor %}
2422
{% for css in page.extra_css %}<link rel="stylesheet" href="{{site.baseurl}}/css/{{ css }}">{% endfor %}
2523
</head>
26-
<body>

_layouts/default.html

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
{% include header.html %}
1+
<!DOCTYPE html>
2+
<html>
3+
{% include head.html %}
24

3-
<div class="container">
4-
{% include nav.html %}
5-
6-
<div class="content">
7-
{{ content }}
5+
<body>
6+
<div class="container">
7+
{% include nav.html %}
8+
9+
<div class="content">
10+
{{ content }}
11+
</div>
12+
13+
<footer>
14+
<code>mapsam.com &copy; {{ site.time | date: '%Y' }}<br>[email protected]</code>
15+
</footer>
816
</div>
917

10-
{% include footer.html %}
11-
</div>
18+
{% for js in page.extra_js %}<script type="text/javascript" src="{{site.baseurl}}/js/{{ js }}"></script>{% endfor %}
19+
</body>
20+
</html>

css/mapsam.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ body {
99
}
1010

1111
.container {
12-
margin: 1em auto 200px;
12+
margin: 1em auto;
1313
max-width: 700px;
1414
}
1515

16+
footer {
17+
margin: 5em auto;
18+
text-align: center;
19+
color: #c0c0c0;
20+
}
21+
1622
a {
1723
text-decoration: none;
1824
}

0 commit comments

Comments
 (0)