Move all edits to theme
This commit is contained in:
parent
a36f14bfea
commit
e6f60f3b92
15 changed files with 2 additions and 221 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
public/*
|
public/*
|
||||||
|
resources/*
|
||||||
|
|
|
||||||
|
|
@ -1,156 +0,0 @@
|
||||||
:root {
|
|
||||||
--size: 0.96rem;
|
|
||||||
--spacing: calc(var(--size) * 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: "Nunito", "Avenir Next", "Avenir", "Segoe UI", "Helvetica Neue",
|
|
||||||
Helvetica, Arial, sans-serif;
|
|
||||||
font-size: calc(var(--size) * 1.6);
|
|
||||||
line-height: 1.45;
|
|
||||||
padding: 0 2.8rem 2.8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
header,
|
|
||||||
main,
|
|
||||||
footer {
|
|
||||||
max-width: 66ch;
|
|
||||||
}
|
|
||||||
|
|
||||||
header,
|
|
||||||
footer {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mesh-wrap {
|
|
||||||
position: relative;
|
|
||||||
left: 50%;
|
|
||||||
width: 100vw;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
pointer-events: none;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mesh-image {
|
|
||||||
display: block;
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
max-width: none;
|
|
||||||
position: absolute;
|
|
||||||
left: 50%;
|
|
||||||
transform: translateX(-50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.mesh-wrap-top {
|
|
||||||
height: 100px;
|
|
||||||
margin-bottom: 0.6rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mesh-image-top {
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-copy {
|
|
||||||
padding-top: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4 {
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: calc(var(--size) * 3.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: calc(var(--size) * 2.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
.title h1 {
|
|
||||||
font-size: calc(var(--size) * 2.9);
|
|
||||||
}
|
|
||||||
|
|
||||||
nav a,
|
|
||||||
a.blog-tags {
|
|
||||||
margin-right: calc(var(--spacing) / 2.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover,
|
|
||||||
a:focus-visible {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.blog-posts li {
|
|
||||||
margin-bottom: 0.2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
margin-block-start: calc(var(--spacing) / 2.8);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
body {
|
|
||||||
background-color: #ffffff;
|
|
||||||
color: #1f2328;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6,
|
|
||||||
strong,
|
|
||||||
b {
|
|
||||||
color: #111827;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #0969da;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:visited,
|
|
||||||
ul.blog-posts li a:visited {
|
|
||||||
color: #8250df;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea,
|
|
||||||
input {
|
|
||||||
background-color: #f6f8fa;
|
|
||||||
color: #1f2328;
|
|
||||||
border: 1px solid #d0d7de;
|
|
||||||
}
|
|
||||||
|
|
||||||
table,
|
|
||||||
th,
|
|
||||||
td {
|
|
||||||
border-color: #d0d7de;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
color: #24292f;
|
|
||||||
background-color: #f6f8fa;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre code {
|
|
||||||
background-color: #f6f8fa;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
border-left-color: #8c959f;
|
|
||||||
color: #57606a;
|
|
||||||
}
|
|
||||||
|
|
||||||
figcaption > p,
|
|
||||||
.helptext {
|
|
||||||
color: #57606a;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
{{ define "main" }}
|
|
||||||
<content>
|
|
||||||
{{ .Content }}
|
|
||||||
|
|
||||||
<h2>My most recent posts</h2>
|
|
||||||
<ul class="blog-posts">
|
|
||||||
{{ $max := default 3 .Site.Params.postsToShowOnIndex }}
|
|
||||||
{{ $posts := where .Site.RegularPages "Section" "posts" }}
|
|
||||||
{{ range first $max $posts.ByDate.Reverse }}
|
|
||||||
<li>
|
|
||||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p><a href="/posts/">All posts →</a></p>
|
|
||||||
|
|
||||||
</content>
|
|
||||||
{{ end }}
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
<ul>
|
|
||||||
{{ range sort .Site.Data.presentations "date" }}
|
|
||||||
<li><a href={{ .link }}>{{ .title }} ({{ .author }})</a></li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
{{ $autoTheme := resources.Get "auto-theme.css" | minify }}
|
|
||||||
<link href="{{ $autoTheme.RelPermalink }}" rel="stylesheet">
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
<div class="footer-copy">
|
|
||||||
{{ .Site.Copyright }}
|
|
||||||
{{ with .Site.Params.madeWith }} | {{ markdownify . }}{{ end }}
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
<div class="mesh-wrap mesh-wrap-top" aria-hidden="true">
|
|
||||||
<img src="/mesh.svg" alt="" class="mesh-image mesh-image-top">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<a href="{{ relURL .Site.Home.RelPermalink }}" class="title"><h1>{{ .Site.Title }}</h1></a>
|
|
||||||
<nav>{{- partial "nav.html" . -}}</nav>
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
{{ range .Site.Menus.main.ByWeight }}
|
|
||||||
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
||||||
{{ end }}
|
|
||||||
<a href='{{ absURL "index.xml" }}'>RSS</a>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
{{ .Page.Store.Set "hasCodeBlock" true }}
|
|
||||||
{{ $lang := .Get "language" | default "" }}
|
|
||||||
{{ with .Get "title" }}
|
|
||||||
<p><strong>{{ . }}</strong></p>
|
|
||||||
{{ end }}
|
|
||||||
{{ highlight (trim .Inner "\r\n") $lang "" }}
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
<i class={{ .Get "class" }}></i>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
<center>
|
|
||||||
<img {{ with .Get "src" }} src="{{ . }}"{{ end }}
|
|
||||||
{{ with .Get "width" }} width="{{ . }}"{{ end }}
|
|
||||||
{{ with .Get "max-width" }} style=" max-width:{{ . }}" {{ end }}
|
|
||||||
>
|
|
||||||
</center>
|
|
||||||
|
|
@ -1,6 +0,0 @@
|
||||||
<ul>
|
|
||||||
{{ range .Site.Data.presentations }}
|
|
||||||
<li>{{ .authors }} ({{ .date }}) {{ .title }}. {{ .conference }} {{ with .link }}
|
|
||||||
<a href={{ . }}>[Link]</a>{{ end }}</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
<ul>
|
|
||||||
{{ range .Site.Data.publications }}
|
|
||||||
<li>{{ .authors }} ({{ .year }}). {{ .title }}. <em>{{ .journal }}</em> {{ .volume }}, {{ .pages }} {{ with .link }} <a href={{ . }}>[Link]</a>{{ end }}</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 1d12a76549445b767fa02902caf30cec7ceaecf9
|
Subproject commit ef8f417c6c8f62702df76293ebe0bbccb424c16d
|
||||||
Loading…
Add table
Add a link
Reference in a new issue