Files
invenio-theme-iform/invenio_theme_tugraz/webpack.py
mb 7d0255b15f migrate to semantic_ui:
This commit holds alot of changes in the UI, migration of bootstrap to semantic-ui, override of header.html and setting them for /search & /deposite endpoints. PS. The migration is not finished.
2020-06-10 15:33:11 +02:00

27 lines
615 B
Python

# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 TUGRAZ.
#
# invenio-theme-tugraz is free software.
"""JS/CSS Webpack bundles for theme."""
from invenio_assets.webpack import WebpackThemeBundle
theme = WebpackThemeBundle(
__name__,
'assets',
default='semantic-ui',
themes={
'semantic-ui': dict(
entry={
'invenio-theme-tugraz-theme':
'./less/invenio_theme_tugraz/theme.less',
#'invenio-theme-tugraz-js':
#'./js/invenio_theme_tugraz/example.js',
},
dependencies={}
)
}
)