First commit

This commit is contained in:
EC2 Default User
2025-01-27 15:21:57 +00:00
commit 607f72659d
49 changed files with 791219 additions and 0 deletions

View File

@@ -0,0 +1 @@
# This file exists only to add js/ folder to git repository.

View File

@@ -0,0 +1 @@
# This file exists only to add less/ folder to git repository.

View File

@@ -0,0 +1 @@
# This file exists only to add templates/ folder to git repository.

View File

@@ -0,0 +1,17 @@
"""Additional views."""
from flask import Blueprint
#
# Registration
#
def create_blueprint(app):
"""Register blueprint routes on app."""
blueprint = Blueprint(
"am_d_model_data_repository",
__name__,
template_folder="./templates",
)
# Add URL rules
return blueprint

View File

@@ -0,0 +1,16 @@
"""JS/CSS Webpack bundles for AM-D-Model Data Repository."""
from invenio_assets.webpack import WebpackThemeBundle
theme = WebpackThemeBundle(
__name__,
"assets",
default="semantic-ui",
themes={
"semantic-ui": dict(
entry={
# Add your webpack entrypoints
},
),
},
)