Skip to content

Commit 12c1417

Browse files
soberingdoomspork
authored andcommitted
Add logo graphic along with a few small improvements (#4)
1 parent a9a813f commit 12c1417

File tree

8 files changed

+14
-20
lines changed

8 files changed

+14
-20
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ _site
55
/deps
66
erl_crash.dump
77
*.ez
8+
.DS_Store

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Slime
22

33
description: >
4-
An Elixir library for rendering Slim-like templates.
4+
An Elixir library for rendering Slim-like templates
55
66
baseurl: ""
77
url: "http://slime-lang.com"

_includes/footer.html

-9
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@
22

33
<div class="wrapper">
44

5-
<h2 class="footer-heading">{{ site.title }}</h2>
6-
7-
<div class="footer-col-wrapper">
8-
<div class="footer-col footer-col-1">
9-
<ul class="contact-list">
10-
<li>{{ site.title }}</li>
11-
</ul>
12-
</div>
13-
145
<div class="footer-col footer-col-2">
156
<ul class="social-media-list">
167
{% if site.github_username %}

_includes/head.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta name="viewport" content="width=device-width initial-scale=1" />
44
<meta http-equiv="X-UA-Compatible" content="IE=edge">
55

6-
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
6+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %} &ndash; {{ site.description }}</title>
77
<meta name="description" content="{{ site.description }}">
88

99
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

_sass/_layout.scss

+9-7
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,17 @@
1111
}
1212

1313
.site-title {
14-
font-size: 26px;
15-
line-height: 56px;
16-
letter-spacing: -1px;
17-
margin-bottom: 0;
14+
background: url(/assets/slime-logo.png) no-repeat;
15+
display: block;
1816
float: left;
17+
height: 40px;
18+
position: relative;
19+
text-indent: -9999em;
20+
top: 8px;
21+
width: 80px;
1922

20-
&,
21-
&:visited {
22-
color: $grey-color-dark;
23+
&:hover {
24+
opacity: 0.8;
2325
}
2426
}
2527

assets/slime-logo.png

1.71 KB
Loading

editors.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
title: Editors support
3+
title: Editor Support
44
order: 3
55
---
66

phoenix_integration.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: page
3-
title: Phoenix integration
3+
title: Phoenix Integration
44
order: 2
55
---
66

0 commit comments

Comments
 (0)