diff --git a/.gitignore b/.gitignore index a703860..b925a6b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ result .direnv/ .jekyll-cache/ -_site/ \ No newline at end of file +_site/ + +assets/css/index.css diff --git a/_config.yml b/_config.yml index d81168f..2682171 100644 --- a/_config.yml +++ b/_config.yml @@ -1,8 +1,19 @@ +plugins: + - jekyll-feed + - jekyll-seo-tag + +# SEO information +logo: /assets/img/logo.png +title: Moxxy +url: "https://moxxy.org" +tagline: A modern XMPP client +locale: en_GB + permalink: /posts/:year-:month-:day-:title:output_ext +# Links that can be used everywhere sourceUrl: https://codeberg.org/moxxy/moxxy githubMirrorUrl: https://github.com/PapaTutuWawa/moxxy - developerMuc: xmpp:moxxy@muc.moxxy.org?join index: diff --git a/_layouts/default.html b/_layouts/default.html index c9263e3..0faf303 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,9 +3,11 @@ - {{ page.title }} + + + {% seo %} {% include header.html %} @@ -18,8 +20,9 @@ Made with <3 by PapaTutuWawa - using TailwindCSS - and Jekyll + using TailwindCSS, + Jekyll and + heroicons. diff --git a/developers.html b/developers.html index 25fc05f..5853ac7 100644 --- a/developers.html +++ b/developers.html @@ -1,6 +1,6 @@ --- layout: default -title: Developer Information | Moxxy +title: Developer Information ---
diff --git a/flake.nix b/flake.nix index 91c3f7e..5029080 100644 --- a/flake.nix +++ b/flake.nix @@ -15,11 +15,12 @@ pkgs.nodePackages."@tailwindcss/typography" ]; })); + in { devShell = pkgs.mkShell { buildInputs = with pkgs; [ tailwindWithTypography - jekyll + jekyll rubyPackages.jekyll-feed rubyPackages.jekyll-seo-tag imagemagick ]; }; diff --git a/index.html b/index.html index c3a8c32..b8cc0a1 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ --- layout: default -title: A modern XMPP client | Moxxy +title: A modern XMPP client ---
diff --git a/input.css b/input.css index b5c61c9..15fc991 100644 --- a/input.css +++ b/input.css @@ -1,3 +1,10 @@ @tailwind base; + +@layer base { + article > p > a { + @apply text-sky-400 !important; + } +} + @tailwind components; @tailwind utilities; diff --git a/posts.html b/posts.html index b9eea5a..d45600a 100644 --- a/posts.html +++ b/posts.html @@ -1,12 +1,20 @@ --- layout: default -title: Blog Posts | Moxxy +title: Blog Posts ---
+

Blog posts

+ + + + + +
+
{% for post in site.posts %}