aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2026-04-14 21:07:54 +0200
committerKaran Jayachandra <mail@karanjayachandra.com>2026-04-14 21:07:54 +0200
commit8fa8665acbb6b6fa901404796f5c3dd2355a6804 (patch)
treefa297a1e18c817f52373f6211a8bcb8b2bdccb19 /layouts/_default
parentb5c4ba6f894e4bc855825dd86a993bb38922c54b (diff)
Added the Linear Algebra draft
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/baseof.html67
1 files changed, 34 insertions, 33 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 012e942..0cb177d 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -1,36 +1,37 @@
<!DOCTYPE html>
<html>
- <head lang="en-gb">
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- {{- $title := ( .Title ) -}}
- {{- $siteTitle := ( .Site.Title ) -}}
- {{- if .IsHome -}}
- <title> {{ $siteTitle }} </title>
- {{- else -}}
- <title> {{ $siteTitle }} | {{ $title }} </title>
- {{- end -}}
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
- <meta name="keywords" content="Karan, Jayachandra, Notes">
- <meta name="author" content="Karan Jayachandra">
- <link href="https://cdn.jsdelivr.net/npm/computer-modern@0.1.3/cmu-serif.min.css" rel="stylesheet">
- <link rel="stylesheet" type="text/css" media="screen" href="/main.css"/>
- <link rel="icon" href="https://karanj.com/favicon-light.png" type="image/x-icon">
- <link rel="icon" href="https://karanj.com/favicon-dark.png" type="image/x-icon" media="(prefers-color-scheme: dark)">
- </head>
- <body>
- <div style="text-align: center; font-size: xx-large; font-weight: 900;">Karan Jayachandra</div>
- <nav>
- <ul>
- <a href="/"><li>Home</li></a>
- <a href="https://gitlab.com/KaranJayachandra"><li>Projects</li></a>
- <a href="/resume.pdf"><li>Resume</li></a>
- <a href="/posts"><li>Posts</li></a>
- </ul>
- </nav>
- <main> {{- block "main" . }}{{- end }} </main>
- <hr style="border-bottom: dotted 1px; border-top: none;">
- <footer>This content is licensed <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a></footer>
- </body>
+ <head lang="en-gb">
+ <meta charset="utf-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ {{- $title := ( .Title ) -}}
+ {{- $siteTitle := ( .Site.Title ) -}}
+ {{- if .IsHome -}}
+ <title> {{ $siteTitle }} </title>
+ {{- else -}}
+ <title> {{ $siteTitle }} | {{ $title }} </title>
+ {{- end -}}
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
+ <meta name="keywords" content="Karan, Jayachandra, Notes">
+ <meta name="author" content="Karan Jayachandra">
+ <link href="https://cdn.jsdelivr.net/npm/computer-modern@0.1.3/cmu-serif.min.css" rel="stylesheet">
+ <link rel="stylesheet" type="text/css" media="screen" href="/main.css"/>
+ <link rel="icon" href="https://karanj.com/favicon-light.png" type="image/x-icon">
+ <link rel="icon" href="https://karanj.com/favicon-dark.png" type="image/x-icon" media="(prefers-color-scheme: dark)">
+ {{if .Params.math }} {{ partial "katex.html" . }} {{end}}
+ </head>
+ <body>
+ <div style="text-align: center; font-size: xx-large; font-weight: 900;">Karan Jayachandra</div>
+ <nav>
+ <ul>
+ <a href="/"><li>Home</li></a>
+ <a href="https://gitlab.com/KaranJayachandra"><li>Projects</li></a>
+ <a href="/resume.pdf"><li>Resume</li></a>
+ <a href="/posts"><li>Posts</li></a>
+ </ul>
+ </nav>
+ <main> {{- block "main" . }}{{- end }} </main>
+ <hr style="border-bottom: dotted 1px; border-top: none;">
+ <footer>This content is licensed <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a></footer>
+ </body>
</html> \ No newline at end of file