Skip to content
GitLab
Explore
Sign in
Commits on Source (2)
Removing original example content
· 20377beb
Pietro Saccardi
authored
Feb 02, 2019
20377beb
Added automatic build
· e3443c2f
Pietro Saccardi
authored
Feb 02, 2019
e3443c2f
Expand all
Show whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
e3443c2f
stages
:
-
build
build:less
:
stage
:
build
image
:
appleboy/node-less
variables
:
PLUGIN_NAME
:
MittelTheme
LESS_SRC
:
Template/css/app.less
LESS_OUTPUT
:
Template/css/main.css
script
:
-
/usr/local/bin/lessc "${LESS_SRC}" > "${LESS_OUTPUT}"
-
git archive HEAD --prefix="${PLUGIN_NAME}/" --format=zip -o "${PLUGIN_NAME}.zip"
-
zip -d "${PLUGIN_NAME}.zip" "${LESS_SRC}"
artifacts
:
paths
:
-
"
${PLUGIN_NAME}.zip"
README.md
View file @
e3443c2f
Example of theme plugin
=======================
This plugin override core templates and use template hooks to create a custom theme.
Mittelab Theme Plugin
======================
-
New CSS styles are added with the hook
**layout:head**
-
A top bar is added to the layout by using the hook
**layout:top**
...
...
@@ -15,7 +13,3 @@ Installation
-
Go on your local installation of Kanboard
-
After the login, you should see the alterations to the default layout
Screenshot
----------

Template/css/app.
original.
less
→
Template/css/app.less
View file @
e3443c2f
File moved
Template/css_output/app.original.css
deleted
100644 → 0
View file @
cdfd2ce6
This diff is collapsed.
Click to expand it.