2021-04-15 01:37:18 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
<div class="post-subscript">
|
|
|
|
<p>
|
2024-06-19 22:44:28 -07:00
|
|
|
{{- range .Params.tags }}
|
2021-04-15 01:37:18 -07:00
|
|
|
<a class="button" href="{{ $.Site.BaseURL }}/tags/{{ . | urlize }}">{{ . }}</a>
|
2024-06-19 22:44:28 -07:00
|
|
|
{{ end -}}
|
2021-04-15 01:37:18 -07:00
|
|
|
</p>
|
2023-01-01 01:28:18 -08:00
|
|
|
<p>{{ i18n "postedOn" (.Date.Format "January 2, 2006") }}.</p>
|
2021-04-15 01:37:18 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="post-content">
|
2024-06-19 21:57:25 -07:00
|
|
|
{{- if not (eq .TableOfContents "<nav id=\"TableOfContents\"></nav>") -}}
|
2021-04-15 01:37:18 -07:00
|
|
|
<div class="table-of-contents">
|
|
|
|
<div class="wrapper">
|
2024-06-19 21:57:25 -07:00
|
|
|
<em>{{- i18n "tableOfContents" -}}</em>
|
|
|
|
{{- .TableOfContents -}}
|
2021-04-15 01:37:18 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-06-19 21:57:25 -07:00
|
|
|
{{- end -}}
|
2021-04-15 01:37:18 -07:00
|
|
|
|
2024-06-19 21:57:25 -07:00
|
|
|
{{- if .Draft -}}
|
|
|
|
{{- partial "warning.html" (i18n "postDraft") -}}
|
|
|
|
{{- end -}}
|
2021-04-15 01:37:18 -07:00
|
|
|
|
2024-06-19 21:57:25 -07:00
|
|
|
{{- .Content -}}
|
2021-04-15 01:37:18 -07:00
|
|
|
</div>
|
2024-06-19 21:57:25 -07:00
|
|
|
{{- end -}}
|
|
|
|
{{- define "after" -}}
|
2024-06-19 22:28:49 -07:00
|
|
|
<div class="container">
|
2024-06-19 21:56:00 -07:00
|
|
|
{{- partial "seriesnav.html" . -}}
|
2024-06-19 22:28:49 -07:00
|
|
|
</div>
|
2021-04-15 01:37:18 -07:00
|
|
|
<hr class="container footer-divider">
|
|
|
|
<footer class="container">
|
2023-01-01 01:28:18 -08:00
|
|
|
<p>{{ i18n "contactFooter" | safeHTML }}</p>
|
2021-06-28 12:03:45 -07:00
|
|
|
<!--
|
2021-04-15 01:37:18 -07:00
|
|
|
<p>I'm also 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="/favorites">my favorite articles from this blog</a>
|
|
|
|
to learn more about me!</p>
|
2021-06-28 12:03:45 -07:00
|
|
|
-->
|
2021-04-15 01:37:18 -07:00
|
|
|
</footer>
|
2024-06-19 21:57:25 -07:00
|
|
|
{{- end -}}
|