Add internship footer to posts (sorry)
This commit is contained in:
parent
0467e4e12f
commit
b1943ede2f
|
@ -170,6 +170,15 @@ hr.header-divider {
|
||||||
border-radius: 0.15rem;
|
border-radius: 0.15rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hr.footer-divider {
|
||||||
|
margin: auto;
|
||||||
|
margin-top: 1.5rem;
|
||||||
|
margin-bottom: 1.5rem;
|
||||||
|
max-width: $container-width;
|
||||||
|
border: none;
|
||||||
|
border-bottom: $standard-border;
|
||||||
|
}
|
||||||
|
|
||||||
ul.post-list {
|
ul.post-list {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
<main class="container">
|
<main class="container">
|
||||||
{{- block "main" . }}{{- end }}
|
{{- block "main" . }}{{- end }}
|
||||||
</main>
|
</main>
|
||||||
{{- partial "footer.html" . -}}
|
{{- block "after" . }}{{- end }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -30,3 +30,13 @@
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{ define "after" }}
|
||||||
|
<hr class="footer-divider">
|
||||||
|
<footer class="container">
|
||||||
|
Liked this article? I'm currently looking for Computer Science internships for the summer
|
||||||
|
of 2021. Take a look at my <a href="/Resume-Danila-Fedorin.pdf">resume</a>,
|
||||||
|
<a href="https://github.com/DanilaFe">GitHub profile</a>,
|
||||||
|
and <a href="https://danilafe.com/tags/compilers/">compiler series</a>
|
||||||
|
to learn more about me!
|
||||||
|
</footer>
|
||||||
|
{{ end }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user