diff --git a/layouts/index.html b/layouts/index.html index 3d2b703..a45fba1 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,32 +1,40 @@ {{ partial "header.html" . }} -
- -
+
+ {{ if .Params.heading }} + {{ if .Params.heading.heading }} +

{{.Params.heading.heading | markdownify}}

+ {{end}} + {{ if .Params.heading.content }} +

{{.Params.heading.content | markdownify}}

+ {{end}} + {{ if .Params.heading.subtitle }} +

{{.Params.heading.subtitle | markdownify}}

+ {{end}} + {{ if .Params.heading.subsubtitle }} +

{{.Params.heading.subsubtitle | markdownify}}

+ {{end}} + {{end}} + + {{ .Content | markdownify}} + + - -
-
- - {{ if .Params.heading }} - {{ if .Params.heading.heading }} -

{{.Params.heading.heading | markdownify}}

- {{end}} - {{ if .Params.heading.content }} -

{{.Params.heading.content | markdownify}}

- {{end}} - {{ if .Params.heading.subtitle }} -

{{.Params.heading.subtitle | markdownify}}

- {{end}} - {{ if .Params.heading.subsubtitle }} -

{{.Params.heading.subsubtitle | markdownify}}

- {{end}} - {{end}} - - - {{ .Content | markdownify}} -
+
+ + + + +
diff --git a/static/images/vikunja-task-overview.png b/static/images/vikunja-task-overview.png new file mode 100644 index 0000000..5dcf285 Binary files /dev/null and b/static/images/vikunja-task-overview.png differ diff --git a/static/images/vikunja-task-overview.webp b/static/images/vikunja-task-overview.webp new file mode 100644 index 0000000..94416fe Binary files /dev/null and b/static/images/vikunja-task-overview.webp differ diff --git a/tailwind.config.js b/tailwind.config.js index 36f22cf..1b41341 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,26 +1,30 @@ const defaultTheme = require('tailwindcss/defaultTheme') module.exports = { - content: [ - './src/*.css', - './layouts/**/*.html' - ], - theme: { - extend: { - colors: { - primary: { - lighter: '#3b7aec', - DEFAULT: '#196aff', - darker: '#0064ff', - } - }, - fontFamily: { - title: ['Quicksand', ...defaultTheme.fontFamily.sans], - }, - }, - }, - plugins: [ - require('@tailwindcss/typography'), - require('@tailwindcss/forms'), - ], + content: [ + './src/*.css', + './layouts/**/*.html' + ], + theme: { + extend: { + colors: { + primary: { + lighter: '#3b7aec', + DEFAULT: '#196aff', + darker: '#0064ff', + } + }, + fontFamily: { + title: ['Quicksand', ...defaultTheme.fontFamily.sans], + }, + backgroundImage: { + 'hero-llama': "url('/images/bg-3.jpg')", + }, + }, + }, + plugins: [ + require('@tailwindcss/typography'), + require('@tailwindcss/forms'), + require('@tailwindcss/aspect-ratio'), + ], }