From d66065ce27ed05a3cc056898fe1a71e3a23ecbb4 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 7 Feb 2022 01:00:04 +0100 Subject: [PATCH] cleanup --- _config.yml | 8 ++++---- plugins.html | 37 +------------------------------------ postcss.config.js | 8 +++----- 3 files changed, 8 insertions(+), 45 deletions(-) diff --git a/_config.yml b/_config.yml index d50ff38f..614eb261 100644 --- a/_config.yml +++ b/_config.yml @@ -45,10 +45,10 @@ defaults: plugins: - jekyll-seo-tag - jekyll-postcss-v2 - - 'jekyll-sitemap' - - 'jekyll-feed' - - 'jekyll-mentions' - - 'jekyll_custom_permalink' + - jekyll-sitemap + - jekyll-feed + - jekyll-mentions + - jekyll_custom_permalink exclude: [ package.json, diff --git a/plugins.html b/plugins.html index 2b50c83f..f94bdc98 100644 --- a/plugins.html +++ b/plugins.html @@ -2,43 +2,8 @@ layout: default title: Plugins --- - - - {% for post in site.posts limit:1 %} -
-
-

{{post.title}}

-

{{post.excerpt}}

-

Continue reading...

-
-
- {% endfor %} - -
-
+
{% for plugin in site.plugins %} {% include plugin_card.html plugin=plugin %} {% endfor %} -
- -
-
- -
-

About

-

This repo is a sample plugin repo for @InvenTree created by @matmair

- -
- -
-

More InvenTree

-
    -
  1. GitHub
  2. -
  3. Docs
  4. -
  5. Python interface
  6. -
  7. Demo instance feel free to register and play around!
  8. -
-
-
-
diff --git a/postcss.config.js b/postcss.config.js index 0d0fd3ba..230cfb3d 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,10 +1,8 @@ module.exports = { plugins: [ require('postcss-import'), - require("tailwindcss"), - require("autoprefixer"), - require('cssnano')({ - preset: 'default', - }), + require('tailwindcss'), + require('autoprefixer'), + require('cssnano')(), ], } \ No newline at end of file