mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-04 07:40:09 +05:30
remove submodule and apply theme
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}" style="font-size: {{ .Site.Params.rootFontSize | default " 100%" }}">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<!-- author -->
|
||||
<meta name="author" content="{{ .Site.Author.name }}">
|
||||
|
||||
<!-- description -->
|
||||
{{ if .Description }}
|
||||
<meta name="description" content="{{ .Description }}">
|
||||
{{ else if and .IsPage .Summary }}
|
||||
<meta name="description" content="{{ .Summary }}">
|
||||
{{ else }}
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
{{ end }}
|
||||
|
||||
<!-- favicon -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="https://avinal.space/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="https://avinal.space/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="https://avinal.space/favicon-16x16.png">
|
||||
|
||||
<!-- keywords -->
|
||||
{{ if .Keywords }}
|
||||
<meta name="keywords" content="{{ delimit .Keywords " " }} {{ delimit .Params.tags " " }}">
|
||||
{{ else }}
|
||||
<meta name="keywords" content="{{ delimit .Site.Params.keywords " ," }}">
|
||||
{{ end }}
|
||||
|
||||
|
||||
<!-- opengraph -->
|
||||
{{ template "_internal/opengraph.html" . }}
|
||||
<meta property="og:image" content="https://avinal.space{{ .Params.image }}" />
|
||||
<meta itemprop="image" content="https://avinal.space{{ .Params.image }}">
|
||||
<!-- permalink -->
|
||||
<link rel="canonical" href="{{ .Permalink }}">
|
||||
|
||||
<!-- rss -->
|
||||
{{ range .AlternativeOutputFormats -}}
|
||||
{{ printf `
|
||||
<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||
{{ end -}}
|
||||
|
||||
<!-- schema -->
|
||||
{{ template "_internal/schema.html" . }}
|
||||
|
||||
<!-- style -->
|
||||
<!-- <link rel="stylesheet" href="https://unpkg.com/latex.css/style.min.css" /> -->
|
||||
<link media="screen" rel="stylesheet" href='{{ "css/common.css" | relURL }}'>
|
||||
<link media="screen" rel="stylesheet" href='{{ "css/content.css" | relURL }}'>
|
||||
|
||||
<!-- title -->
|
||||
{{ if .IsHome }}
|
||||
<title>{{ .Site.Title }}</title>
|
||||
{{ else }}
|
||||
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
||||
{{ end }}
|
||||
|
||||
{{ block "head" . }}{{ end }}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
{{ partial "header.html" . }}
|
||||
{{ block "main" . }}{{ end }}
|
||||
{{ partial "footer.html" . }}
|
||||
</div>
|
||||
|
||||
<!-- custom css -->
|
||||
{{ range .Site.Params.customCSS }}
|
||||
<link media="screen" rel="stylesheet" href="{{ . | absURL }}" />
|
||||
{{ end }}
|
||||
|
||||
<!-- custom js -->
|
||||
{{ range .Site.Params.customJS }}
|
||||
<script src="{{ . | absURL }}"></script>
|
||||
{{ end }}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,25 @@
|
||||
{{ define "head" }}
|
||||
<link rel="stylesheet" href='{{ "css/list.css" | absURL }}'>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<main id="main" class="archive">
|
||||
{{ $pages := where .Data.Pages "Type" "post" }}
|
||||
{{ range $pages.GroupByDate "2006-01" }}
|
||||
<div class="post-group">
|
||||
<h2>{{ dateFormat "January 2006" (printf "%s-01" .Key) }}</h2>
|
||||
<ul>
|
||||
{{ range .Pages }}
|
||||
<li>
|
||||
<a class="link" href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
<time>{{ .PublishDate.Format .Site.Params.dateFormat }}</time>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ end }}
|
||||
<div class="post-group">
|
||||
<h2>...</h2>
|
||||
</div>
|
||||
</main>
|
||||
{{ end }}
|
||||
@@ -0,0 +1,28 @@
|
||||
{{ define "head" }}
|
||||
<link rel="stylesheet" href='{{ "css/single.css" | relURL }}'>
|
||||
{{ end }}
|
||||
|
||||
{{ define "main" }}
|
||||
<main id="main" class="post">
|
||||
|
||||
{{ if cond (ne .Params.toc nil) .Params.toc .Site.Params.toc }}
|
||||
{{ if ne .TableOfContents "<nav id=\"TableOfContents\"></nav>" }}
|
||||
<details>
|
||||
<summary>
|
||||
<b>Table of Contents</b>
|
||||
</summary>
|
||||
<div class="toc {{ if .Site.Params.numberedSubtitles }}numbered-subtitles{{ end }}">{{ .TableOfContents }}</div>
|
||||
</details>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
<article class="content {{ if .Site.Params.numberedSubtitles }}numbered-subtitles{{ end }}">
|
||||
{{ if .Site.Params.emphasisWithDots }}
|
||||
{{ .Content | replaceRE "<strong>(\\p{Han}+?)</strong>" "<strong class=chinese>$1</strong>" | safeHTML }}
|
||||
{{ else }}
|
||||
{{ .Content }}
|
||||
|
||||
{{ end }}
|
||||
</article>
|
||||
|
||||
</main>
|
||||
{{ end }}
|
||||
@@ -0,0 +1,17 @@
|
||||
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
{{ range .Data.Pages }}
|
||||
{{- if .Permalink -}}
|
||||
<url>
|
||||
<loc>https://null.avinal.space{{ .RelPermalink }}</loc>{{ if not .Lastmod.IsZero }}
|
||||
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
|
||||
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
|
||||
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}
|
||||
<image:image>
|
||||
<image:loc>https://null.avinal.space{{ .Params.image }}</image:loc>
|
||||
</image:image>
|
||||
</url>
|
||||
{{- end -}}
|
||||
{{ end }}
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user