-
37config.toml
-
8content/note/5fef461b/index.md
-
17content/note/5fef473d/index.md
-
10content/note/5fef49d7/index.md
-
BINstatic/favicon/android-chrome-192x192.png
-
BINstatic/favicon/android-chrome-256x256.png
-
BINstatic/favicon/apple-touch-icon.png
-
9static/favicon/browserconfig.xml
-
BINstatic/favicon/favicon-16x16.png
-
BINstatic/favicon/favicon-32x32.png
-
BINstatic/favicon/favicon.ico
-
BINstatic/favicon/mstile-150x150.png
-
15static/favicon/safari-pinned-tab.svg
-
19static/favicon/site.webmanifest
-
BINstatic/images/profile1.jpg
-
BINstatic/images/profile2.jpg
-
55themes/nipponalba/layouts/_default/list.html
-
43themes/nipponalba/layouts/_default/single.html
-
38themes/nipponalba/layouts/index.html
-
30themes/nipponalba/layouts/partials/aside.html
-
12themes/nipponalba/layouts/partials/navbar.html
-
413themes/nipponalba/static/css/style.css
@ -1,8 +0,0 @@ |
|||
--- |
|||
date: '2021-01-01 15:56:11' |
|||
draft: false |
|||
posttype: note |
|||
slug: 5fef461b |
|||
title: note |
|||
--- |
|||
test |
@ -1,17 +0,0 @@ |
|||
--- |
|||
date: '2021-01-01 16:01:01' |
|||
draft: false |
|||
posttype: note |
|||
slug: 5fef473d |
|||
title: note |
|||
--- |
|||
# TEST Header |
|||
**bold** |
|||
*italic* |
|||
|
|||
- list 1 |
|||
- list 2 |
|||
|
|||
https://sakino.kelbie.scot |
|||
|
|||
[link here](https://sakino.kelbie.scot) |
@ -1,10 +0,0 @@ |
|||
--- |
|||
category: |
|||
- education |
|||
date: '2021-01-01 16:12:07' |
|||
draft: false |
|||
posttype: note |
|||
slug: 5fef49d7 |
|||
title: note |
|||
--- |
|||
test |
After Width: 192 | Height: 192 | Size: 47 KiB |
After Width: 256 | Height: 256 | Size: 77 KiB |
After Width: 180 | Height: 180 | Size: 42 KiB |
@ -0,0 +1,9 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<browserconfig> |
|||
<msapplication> |
|||
<tile> |
|||
<square150x150logo src="favicon/mstile-150x150.png"/> |
|||
<TileColor>#da532c</TileColor> |
|||
</tile> |
|||
</msapplication> |
|||
</browserconfig> |
After Width: 16 | Height: 16 | Size: 1.4 KiB |
After Width: 32 | Height: 32 | Size: 2.4 KiB |
After Width: 270 | Height: 270 | Size: 24 KiB |
@ -0,0 +1,15 @@ |
|||
<?xml version="1.0" standalone="no"?> |
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" |
|||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> |
|||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" |
|||
width="368.000000pt" height="368.000000pt" viewBox="0 0 368.000000 368.000000" |
|||
preserveAspectRatio="xMidYMid meet"> |
|||
<metadata> |
|||
Created by potrace 1.11, written by Peter Selinger 2001-2013 |
|||
</metadata> |
|||
<g transform="translate(0.000000,368.000000) scale(0.100000,-0.100000)" |
|||
fill="#000000" stroke="none"> |
|||
<path d="M690 1840 l0 -1840 1150 0 1150 0 0 1840 0 1840 -1150 0 -1150 0 0 |
|||
-1840z"/> |
|||
</g> |
|||
</svg> |
@ -0,0 +1,19 @@ |
|||
{ |
|||
"name": "", |
|||
"short_name": "", |
|||
"icons": [ |
|||
{ |
|||
"src": "android-chrome-192x192.png", |
|||
"sizes": "192x192", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"src": "android-chrome-256x256.png", |
|||
"sizes": "256x256", |
|||
"type": "image/png" |
|||
} |
|||
], |
|||
"theme_color": "#ffffff", |
|||
"background_color": "#ffffff", |
|||
"display": "standalone" |
|||
} |
After Width: 230 | Height: 368 | Size: 44 KiB |
After Width: 230 | Height: 288 | Size: 44 KiB |
@ -1,58 +1,21 @@ |
|||
{{ define "main" }} |
|||
<section class="archive"> |
|||
<section class="archive-listing"> |
|||
<span class="list-title">{{if not (eq .Name "Blog")}}{{ .Name }}{{ end }}{{if eq .Name "Blog"}}All Blogs{{ end }} <a href="{{ .Permalink }}index.xml"><i class="fa fa-rss fa-2x fa-fw" aria-hidden="true" title="{{ .Name }} RSS feed"></i></a></span> |
|||
{{ if eq .Type "article" "blog"}}<ul class="listing">{{ range .Data.Pages.GroupByDate "2006" }} |
|||
{{ range .Pages }} |
|||
<li class="archive-listing-item"> |
|||
{{ if eq .Type "blog"}} |
|||
<span class="list-blog"><a class="u-url" href="{{ .Permalink }}" title="{{ .Title }}"> |
|||
{{ $image := (replace .Title " " "") }} |
|||
{{ $image := print "/images/" $image ".jpg" }} |
|||
<img class="banner" src="{{ ( $image | urlize ) | relLangURL }}" /> |
|||
<span class="p-name entry-title">{{ .Title }}</span></a> |
|||
</span> |
|||
{{end}} |
|||
{{ if eq .Type "article"}} |
|||
<span class="list-article h-entry entry"><a class="u-url" href="{{ .Permalink }}"> |
|||
{{ with .Page.Params.Image }}{{ partial "image.html" . }}{{ end }}<span class="p-name entry-title">{{ .Title }}</span> |
|||
<section class="e-content">{{ .Description }}</section> |
|||
</a></span> |
|||
{{end}} |
|||
</li> |
|||
{{ end }}{{end}}</ul>{{else}} |
|||
<span class="list-title">{{ humanize .Name }}<a href="{{ .Permalink }}index.xml"><i class="fa fa-rss fa-2x fa-fw" aria-hidden="true" title="{{ .Name }} RSS feed"></i></a></span> |
|||
<ul class="listing"> |
|||
{{ range .Pages }} |
|||
<li class="archive-listing-item"> |
|||
{{ if not (eq .Type "note" "photo") }} |
|||
{{ if eq .Type "article"}} |
|||
<span class="list-article h-entry entry"><a class="u-url" href="{{ .Permalink }}"> |
|||
{{ with .Page.Params.Image }}{{ partial "image.html" . }}{{ end }}<span class="p-name entry-title">{{ .Title }}</span> |
|||
<section class="e-content">{{ .Description }}</section> |
|||
</a></span> |
|||
{{else}}<span class="listing-post"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</span>{{end}}{{else}} |
|||
<li class="post h-feed contents"> |
|||
{{ if eq .Type "note"}} |
|||
<span class="list-category"><a class="u-url" href="{{ .Permalink }}" title="{{ .Title }}"> |
|||
<span class="note-banner">{{ humanize .Type }}</span> |
|||
<span class="p-summary e-content"><p>{{ .Summary }}</p></span></a> |
|||
</span>{{else}} |
|||
<article class="list-category index-photo h-entry entry"><a class="u-url" href="{{ .Permalink }}"> |
|||
<section class="e-content"> |
|||
<section class="photos"> |
|||
{{ range first 1 .Page.Params.Photo }} |
|||
{{ if isset . "value" }} |
|||
<img class="u-photo thumb" src="{{ replace .value "800." "300."}}" alt="{{ .alt }}"/> |
|||
{{ else }} |
|||
<img class="u-photo thumb" src="{{ replace . "800." "300."}}" alt="Alt not yet added, will fix!"/> |
|||
{{ end }} |
|||
{{end}} |
|||
</section> |
|||
|
|||
<span class="archive_content h-entry entry"> |
|||
<span class="info-date"><a href="{{ .Permalink }}" class="u-url"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "2 Jan 2006 15:04 GMT" }}</time></a></span> |
|||
<section class="p-name e-content">{{ .Content }}</section> |
|||
<section class="info"> |
|||
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/> |
|||
</section> |
|||
</a></article>{{end}}{{end}} |
|||
</span>{{end}} |
|||
</li> |
|||
{{ end }}</ul> |
|||
{{ end }} |
|||
|
|||
</section> |
|||
</section> |
|||
{{ end }} |
@ -1,50 +1,20 @@ |
|||
{{ define "main" }} |
|||
<section class="about"> |
|||
<section class="h-feed"> |
|||
<section class="latest_note"><h2>Latest note</h2> |
|||
{{ range (first 1 (where .Site.RegularPages "Type" "=" "note")) }} |
|||
<section class="latest_note"><h2>Latest notes</h2> |
|||
{{ range (first 3 (where .Site.RegularPages "Type" "=" "note")) }} |
|||
<article class="index-note h-entry entry"> |
|||
<section class="author" style="display:none;"> |
|||
<a rel="author" class="p-author h-card" rel="me" href="https://jon.kelbie.scot">{{ .Site.Params.Author }}<img src="/images/profile1.jpg"/></a> |
|||
</section> |
|||
<span class="info-date"><a href="{{ .Permalink }}" class="u-url"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "2 Jan 2006 15:04 GMT" }}</time></a></span> |
|||
<section class="e-content">{{ .Content }} |
|||
</section> |
|||
<section class="info"> |
|||
{{ if eq .Type "article" }} |
|||
<span class="blogs_span">{{ with .Page.Params.Blog }}Blog: {{ partial "taxonomy/blog.html" . }}{{ end }}</span><span class="info-date"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "02/01/2006 15:04 GMT" }}</time></span><br/> |
|||
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><span class="reading-time">{{ .ReadingTime }}-minute read</span><br/> |
|||
<span class="tags_span">{{ with .Page.Params.tag }}Tags: {{ partial "taxonomy/tags.html" . }}{{ end }}</span> |
|||
{{ else }} |
|||
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><span class="info-date"><a href="{{ .Permalink }}" class="u-url"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "02/01/2006 15:04 GMT" }}</time></a></span><br/> |
|||
{{ end }} |
|||
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/> |
|||
</section> |
|||
</article> {{ end }} |
|||
</section> |
|||
<section class="latest_articles"><h2>Latest articles</h2> |
|||
{{ range (first 3 (where .Site.RegularPages "Type" "=" "article")) }} |
|||
<article class="index-article h-entry entry"><a class="u-url" href="{{ .Permalink }}" title="{{ .Title }}"> |
|||
{{ range first 1 .Page.Params.image }} <img class="banner" src="{{ replace . "images" "images/300" }}"/>{{ end }}<span class="p-name entry-title">{{ .Title }}</span> |
|||
<section class="e-content">{{ .Description }}</section> |
|||
</a></article>{{ end }}</section> |
|||
<section class="latest_photos"><h2>Latest photos</h2> |
|||
{{ range (first 3 (where .Site.RegularPages "Type" "=" "photo")) }} |
|||
<article class="index-photo h-entry entry"><a class="u-url" href="{{ .Permalink }}"> |
|||
<section class="e-content"> |
|||
{{ if eq .Type "photo"}} |
|||
<section class="photos"> |
|||
{{ $summary := .Content }} |
|||
{{ range first 1 .Page.Params.Photo }} |
|||
{{ if isset . "value" }} |
|||
<img class="u-photo thumb" src="{{ replace .value "800." "300."}}" title="{{$summary}}" alt="{{ .alt }}"/> |
|||
{{ else }} |
|||
<img class="u-photo thumb" src="{{ replace . "800." "300."}}" title="{{$summary}}" alt="Alt not yet added, will fix!"/> |
|||
{{ end }} |
|||
{{end}} |
|||
</section> |
|||
{{end}} |
|||
</section> |
|||
</a></article>{{ end }}</section> |
|||
<a href="https://brid.gy/publish/mastodon"></a> |
|||
</section> |
|||
</section> |
|||
|
|||
|