diff --git a/content/english/blog/_index.md b/content/english/blog/_index.md index 478e1b5..6922e8b 100755 --- a/content/english/blog/_index.md +++ b/content/english/blog/_index.md @@ -1,6 +1,5 @@ --- title: "My Notes" meta_title: "Notes to myself and to anyone who might find them interesting" -url: "/" description: "Notes to myself and to anyone who might find them interesting" --- diff --git a/data/theme.json b/data/theme.json index a17716f..7b5c65e 100644 --- a/data/theme.json +++ b/data/theme.json @@ -4,41 +4,41 @@ "theme_color": { "primary": "#121212", "body": "#fff", - "border": "#eaeaea", + "border": "#1e293b", "theme_light": "#f6f6f6", - "theme_dark": "" + "theme_dark": "#1e293b" }, "text_color": { "default": "#444444", - "dark": "#040404", - "light": "#717171" + "dark": "#1e293b", + "light": "#1e293b" } }, "darkmode": { "theme_color": { "primary": "#fff", - "body": "#1c1c1c", - "border": "#3E3E3E", - "theme_light": "#222222", + "body": "#1e293b", + "border": "#ffffff", + "theme_light": "#1b2636", "theme_dark": "" }, "text_color": { - "default": "#B4AFB6", - "dark": "#fff", - "light": "#B4AFB6" + "default": "#ffffff", + "dark": "#ffffff", + "light": "" } } }, "fonts": { "font_family": { - "primary": "Heebo:wght@400;600", + "primary": "Inter:wght@400;700", "primary_type": "sans-serif", - "secondary": "Signika:wght@500;700", + "secondary": "Inter:wght@500;700", "secondary_type": "sans-serif" }, "font_size": { - "base": "16", - "scale": "1.2" + "base": "19", + "scale": "1.22" } } } diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..38ffe71 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,32 @@ +{{ define "main" }} + + {{ with site.GetPage "blog" }} + +
+
+
+ +
+
+ {{ range .Data.Pages }} +
+ {{ partial "components/blog-card" . }} +
+ {{ end }} +
+
+ +
+ + {{ $widget:= site.Params.widgets.sidebar }} + {{ partialCached "widgets/widget-wrapper" ( dict "Widgets" $widget "Scope" . ) }} +
+
+
+
+ + {{end}} + + + +{{ end }}