From fe7c149811f2e20c055ad0375aff05d29491efb4 Mon Sep 17 00:00:00 2001
From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com>
Date: Sat, 4 May 2024 01:05:04 +0200
Subject: Rebuild the site in Astro
Add licence
Update site name in header to match README.md
Add missing metadescription, opengraph and link to RSS
Update Astro configuration to include sitemap integration with priority and changefreq settings
New post
---
layouts/_default/_markup/render-heading.html | 4 --
layouts/_default/baseof.html | 42 -------------------
layouts/_default/single.html | 9 ----
layouts/blog/list.html | 12 ------
layouts/blog/single.html | 13 ------
layouts/home/list.html | 29 -------------
layouts/partials/footer.html | 9 ----
layouts/partials/header.html | 62 ----------------------------
layouts/partials/ld/person.html | 45 --------------------
layouts/partials/ld/post.html | 26 ------------
layouts/partials/ld/website.html | 8 ----
11 files changed, 259 deletions(-)
delete mode 100644 layouts/_default/_markup/render-heading.html
delete mode 100644 layouts/_default/baseof.html
delete mode 100644 layouts/_default/single.html
delete mode 100644 layouts/blog/list.html
delete mode 100644 layouts/blog/single.html
delete mode 100644 layouts/home/list.html
delete mode 100644 layouts/partials/footer.html
delete mode 100644 layouts/partials/header.html
delete mode 100644 layouts/partials/ld/person.html
delete mode 100644 layouts/partials/ld/post.html
delete mode 100644 layouts/partials/ld/website.html
(limited to 'layouts')
diff --git a/layouts/_default/_markup/render-heading.html b/layouts/_default/_markup/render-heading.html
deleted file mode 100644
index dd16877..0000000
--- a/layouts/_default/_markup/render-heading.html
+++ /dev/null
@@ -1,4 +0,0 @@
-
- #
- {{ .Text | safeHTML }}
-
\ No newline at end of file
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
deleted file mode 100644
index 7015d95..0000000
--- a/layouts/_default/baseof.html
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
- {{ .Page.Title }} - Ariel Costas
-
-
-
-
-
-
-
-
-
-
- {{- $stylesheetOptions := dict "transpiler" "libsass" }}
- {{ $mainStylesheet := resources.Get "css/base.scss" | resources.ToCSS $stylesheetOptions | resources.Minify | resources.Fingerprint }}
-
-
- {{ block "head_extras" . }}
- {{ end }}
-
-
-
- {{ partial "partials/header.html" . }}
-
-
- {{ block "main" . }}
- {{ end }}
-
-
- {{ partial "partials/footer.html" . }}
-
- {{ $script := resources.Get "js/navbar.js" | minify }}
-
-
-
-
\ No newline at end of file
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
deleted file mode 100644
index f87f4b3..0000000
--- a/layouts/_default/single.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{{ define "main" }}
-{{ .Title }}
-
- {{ if gt .Date.Unix 0 }}
- {{ .Date.Format "2006-01-02" }}
- {{ end }}
-
-{{ .Content }}
-{{ end }}
\ No newline at end of file
diff --git a/layouts/blog/list.html b/layouts/blog/list.html
deleted file mode 100644
index db1cb98..0000000
--- a/layouts/blog/list.html
+++ /dev/null
@@ -1,12 +0,0 @@
-{{ define "main" }}
- {{- .Content }}
-
-
- {{ range .Pages.ByLastmod.Reverse }}
-
- {{ .Date.Format "2006-01-02" }}
- {{ .Page.Title }}
-
- {{ end }}
-
-{{ end }}
diff --git a/layouts/blog/single.html b/layouts/blog/single.html
deleted file mode 100644
index 58c2ba5..0000000
--- a/layouts/blog/single.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{{ define "head_extras" }}
- {{ partial "ld/post.html" . }}
-{{ end }}
-
-{{ define "main" }}
-{{ .Title }}
-
- {{ if gt .Date.Unix 0 }}
- {{ .Date.Format "2006-01-02" }}
- {{ end }}
-
-{{ .Content }}
-{{ end }}
\ No newline at end of file
diff --git a/layouts/home/list.html b/layouts/home/list.html
deleted file mode 100644
index f0316bc..0000000
--- a/layouts/home/list.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{ define "head_extras" }}
-{{ partial "ld/website.html" . }}
-{{ end }}
-
-{{ define "main" }}
-{{- .Content }}
-
-{{ with .Site.GetPage "section" "blog" }}
-
-{{ end }}
-{{ end}}
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
deleted file mode 100644
index 0e48d48..0000000
--- a/layouts/partials/footer.html
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
deleted file mode 100644
index 5199467..0000000
--- a/layouts/partials/header.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
\ No newline at end of file
diff --git a/layouts/partials/ld/person.html b/layouts/partials/ld/person.html
deleted file mode 100644
index f329ae7..0000000
--- a/layouts/partials/ld/person.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
\ No newline at end of file
diff --git a/layouts/partials/ld/post.html b/layouts/partials/ld/post.html
deleted file mode 100644
index 0afa7ad..0000000
--- a/layouts/partials/ld/post.html
+++ /dev/null
@@ -1,26 +0,0 @@
-
\ No newline at end of file
diff --git a/layouts/partials/ld/website.html b/layouts/partials/ld/website.html
deleted file mode 100644
index 421250f..0000000
--- a/layouts/partials/ld/website.html
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
--
cgit v1.3