Skip to content

Commit 9c9ef19

Browse files
committed
Add authors section to the bottom of the index
1 parent 2f744cb commit 9c9ef19

File tree

6 files changed

+46
-5
lines changed

6 files changed

+46
-5
lines changed

source/_views/default.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,11 @@
1515
<![endif]-->
1616
</head>
1717
<body>
18-
<header>
19-
</header>
2018
<div class="mainContent container">
2119
<div class="row-fluid">
2220
{% block content_wrapper %}{% block content %}{% endblock %}{% endblock %}
2321
</div>
2422
</div>
25-
<footer class="container">
26-
Go stack some middlewares
27-
</footer>
2823

2924
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
3025
<script>window.jQuery || document.write('<script src="{{ site.url }}/components/jquery/jquery.min.js"><\/script>')</script>

source/css/style.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,25 @@ pre code.php {
6868
margin-top: 1em;
6969
}
7070
}
71+
72+
.authors {
73+
text-align: center;
74+
}
75+
76+
ul.avatars {
77+
list-style: none;
78+
}
79+
80+
ul.avatars li {
81+
display: inline-block;
82+
margin-right: 20px;
83+
margin-top: 20px;
84+
}
85+
86+
ul.avatars li img {
87+
margin-right: 10px;
88+
}
89+
90+
ul.avatars li a {
91+
text-decoration: none;
92+
}

source/img/beausimensen.png

9.97 KB
Loading

source/img/hochchristoph.jpg

2.2 KB
Loading

source/img/igorwesome.jpeg

1.42 KB
Loading

source/index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,28 @@ <h2>Your own middleware</h2>
9191
Yes, leveraging the HTTP abstraction is that easy!
9292
</p>
9393
</div>
94+
95+
<footer class="authors container">
96+
<p class="lead">Brought to you by</p>
97+
<ul class="avatars">
98+
<li>
99+
<a href="https://twitter.com/igorwesome">
100+
<img class="img-circle" src="{{ site.url }}/img/igorwesome.jpeg">
101+
@igorwesome
102+
</a>
103+
</li>
104+
<li>
105+
<a href="https://twitter.com/beausimensen">
106+
<img class="img-circle" src="{{ site.url }}/img/beausimensen.png">
107+
@beausimensen
108+
</a>
109+
</li>
110+
<li>
111+
<a href="https://twitter.com/hochchristoph">
112+
<img class="img-circle" src="{{ site.url }}/img/hochchristoph.jpg">
113+
@hochchristoph
114+
</a>
115+
</li>
116+
</ul>
117+
</footer>
94118
{% endblock %}

0 commit comments

Comments
 (0)