-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
55 changed files
with
1,239 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<article id="cv"> | ||
{% include header.html %} | ||
<main> | ||
{{ content }} | ||
</main> | ||
{% include footer.html %} | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
{% if page.title == "Home" %}{% include particles-home.html %}{% endif %} | ||
{% if page.title == "404" %}{% include particles-404.html %}{% endif %} | ||
|
||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col col-sm-10 col-md-8 col-lg-6"> | ||
{{ content }} | ||
</div> | ||
</div> | ||
</div> | ||
<script src="{{ '/assets/js/bootstrap.min.js' | relative_url }}"></script> | ||
{% if page.title != "404" %} | ||
<script src="{{ '/assets/js/darkmode.js' | relative_url }}"></script> | ||
{% endif %} | ||
{% if page.title == "Home" or page.title == "404" %} | ||
<script src="{{ '/assets/js/particles.min.js' | relative_url }}"></script> | ||
<script src="{{ '/assets/js/main.js' | relative_url }}"></script> | ||
{% endif %} | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<article id="home"> | ||
{% include toggler.html %} | ||
<main> | ||
{{ content }} | ||
</main> | ||
{% include footer.html %} | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<article> | ||
{% include header.html %} | ||
<main> | ||
{{ content }} | ||
</main> | ||
{% include footer.html %} | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<article> | ||
{% include header.html %} | ||
<main> | ||
<h1 class="post-title">{{ page.title }}</h1> | ||
<time datetime="{{ page.date | date_to_xmlschema }}" class="post-date">{{ page.date | date: "%B %e, %Y" }}</time> | ||
<p class="lead">{{ page.lead }}</p> | ||
{{ content }} | ||
</main> | ||
{% include footer.html %} | ||
</article> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: post | ||
title: Placeholder III | ||
lead: Placeholder III description | ||
--- | ||
|
||
|
||
> Placeholder III quote. | ||
Placeholder III text. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: post | ||
title: Placeholder II | ||
lead: Placeholder II description | ||
--- | ||
|
||
|
||
> Placeholder II quote. | ||
Placeholder II text. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: post | ||
title: Placeholder I | ||
lead: Placeholder I description | ||
--- | ||
|
||
|
||
> Placeholder I quote. | ||
Placeholder I text. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
body { | ||
font-family: var(--type-serif); | ||
font-size: var(--type-size); | ||
font-weight: var(--type-weight); | ||
line-height: var(--type-height); | ||
font-variant-numeric: var(--type-numeric); | ||
background-color: var(--color-background); | ||
color: var(--color-text); | ||
} | ||
|
||
svg circle, | ||
svg path { | ||
stroke: var(--color-text); | ||
stroke-width: 0.075em; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: var(--color-link); | ||
|
||
&:focus, | ||
&:hover { | ||
border-bottom: calc(var(--type-size) / 10) dotted var(--color-link); | ||
color: var(--color-link); | ||
} | ||
} | ||
|
||
header { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-top: 1.5em; | ||
margin-bottom: 2em; | ||
} | ||
|
||
footer { | ||
margin: 2em 0; | ||
} | ||
|
||
small { | ||
font-weight: 300; | ||
} | ||
|
||
abbr { | ||
text-transform: lowercase; | ||
font-family: var(--type-caps); | ||
} | ||
|
||
blockquote { | ||
padding-left: 1em; | ||
border-left: 0.1em solid var(--color-border); | ||
font-weight: 300; | ||
} | ||
|
||
mark { | ||
padding: 0.1em; | ||
border-radius: 0.25em; | ||
background-color: var(--color-mark); | ||
color: var(--color-text); | ||
} | ||
|
||
hr { | ||
border-top: 0.1em solid var(--color-text); | ||
} | ||
|
||
img { | ||
display: block; | ||
max-width: 100%; | ||
margin: 1em 0; | ||
border-radius: 0.25em; | ||
} | ||
|
||
table.table { | ||
color: var(--color-text); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pre,code { | ||
font-family: var(--type-mono); | ||
} | ||
|
||
.highlight { | ||
padding: 0 1em; | ||
border-radius: 0.25em; | ||
color: var(--color-chunk); | ||
|
||
pre { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.highlight { | ||
padding: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
a.site-title { | ||
font-weight: 500; | ||
color: var(--color-heading); | ||
|
||
&:focus, | ||
&:hover { | ||
border-color: inherit; | ||
color: inherit; | ||
} | ||
} | ||
|
||
.toggle-bar { | ||
display: flex; | ||
justify-content: end; | ||
padding-top: 1.5em; | ||
} | ||
|
||
.toggle-icon { | ||
color: var(--color-heading); | ||
|
||
&:focus, | ||
&:hover { | ||
cursor: pointer; | ||
border: none; | ||
|
||
svg circle, | ||
svg path { | ||
stroke-width: 0.1em; | ||
} | ||
} | ||
} | ||
|
||
.message { | ||
padding: 0.25em 1em; | ||
border-radius: 0.25em; | ||
background-color: var(--color-mark); | ||
color: var(--color-text); | ||
} | ||
|
||
dd { | ||
padding-left: 0.5em; | ||
} | ||
|
||
.archive ul, | ||
.contact ul { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
|
||
.li-icon { | ||
margin-right: 0.25em; | ||
} | ||
|
||
a.iconlink { | ||
svg circle, | ||
svg path { | ||
stroke: var(--color-link); | ||
} | ||
|
||
&:focus, | ||
&:hover { | ||
border: none; | ||
|
||
svg circle, | ||
svg path { | ||
stroke-width: 0.1em; | ||
} | ||
} | ||
} | ||
|
||
.footnotes { | ||
margin-top: 2em; | ||
|
||
p { | ||
margin: 0; | ||
} | ||
|
||
&::before { | ||
content: "Notes"; | ||
} | ||
} | ||
|
||
a[href^="#fn:"] { | ||
margin-left: 0.1em; | ||
font-weight: 500; | ||
|
||
&:focus, | ||
&:hover { | ||
font-weight: 700; | ||
border: none; | ||
} | ||
} | ||
|
||
a.reversefootnote { | ||
font-weight: 500; | ||
|
||
&:focus, | ||
&:hover { | ||
font-weight: 700; | ||
border: none; | ||
} | ||
} |
Oops, something went wrong.