Initial commit of site with new terminal theme

This commit is contained in:
Alex Selimov 2025-07-11 23:23:10 -04:00
commit a3cb590d26
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
37 changed files with 1534 additions and 0 deletions

View file

@ -0,0 +1,5 @@
<ul>
{{ range sort .Site.Data.presentations "date" }}
<li><a href={{ .link }}>{{ .title }} ({{ .author }})</a></li>
{{ end }}
</ul>

View file

@ -0,0 +1 @@
<i class={{ .Get "class" }}></i>

View file

@ -0,0 +1,6 @@
<center>
<img {{ with .Get "src" }} src="{{ . }}"{{ end }}
{{ with .Get "width" }} width="{{ . }}"{{ end }}
{{ with .Get "max-width" }} style=" max-width:{{ . }}" {{ end }}
>
</center>

View file

@ -0,0 +1,6 @@
<ul>
{{ range .Site.Data.presentations }}
<li>{{ .authors }} ({{ .date }}) {{ .title }}. {{ .conference }} {{ with .link }}
<a href={{ . }}>[Link]</a>{{ end }}</li>
{{ end }}
</ul>

View file

@ -0,0 +1,5 @@
<ul>
{{ range .Site.Data.publications }}
<li>{{ .authors }} ({{ .year }}). {{ .title }}. <em>{{ .journal }}</em> {{ .volume }}, {{ .pages }} {{ with .link }} <a href={{ . }}>[Link]</a>{{ end }}</li>
{{ end }}
</ul>

View file