mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-22 20:51:58 +00:00
28 lines
724 B
Python
28 lines
724 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/theme.js",
|
|
# "invenio-theme-tugraz-search-app": "./js/invenio_theme_tugraz/search/index.js",
|
|
},
|
|
dependencies={
|
|
# Add your dependencies
|
|
},
|
|
)
|
|
},
|
|
)
|