Skip to content

Commit

Permalink
chore: v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Dec 3, 2024
1 parent 542308d commit 2fde327
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ platforms:
releaseDate: '2024-12-03'
roadmap: 'https://github.com/UniversitaDellaCalabria/unicms-template-italia/issues'
softwareType: standalone/web
softwareVersion: v1.3.2
softwareVersion: v1.3.3
url: 'https://github.com/UniversitaDellaCalabria/unicms-template-italia'
usedBy:
- Università della Calabria - https://www.unical.it
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name=PKG_NAME,
version='1.3.2',
version='1.3.3',

packages=[PKG_NAME],
package_dir={PKG_NAME: f"{SRC_FOLDER}/{PKG_NAME}"},
Expand Down
17 changes: 14 additions & 3 deletions src/unicms_template_italia/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
('breadcrumbs', _('Breadcrumbs')),

# section 1
('1-top-a', _('Section 1 - Top A')),
('section-1',
(
('1-top-a', _('Section 1 - Top A')),
('1-top-b', _('Section 1 - Top B')),
('1-top-c', _('Section 1 - Top C')),
('1-mid-top-a', _('Section 1 - Middle Top A')),
Expand Down Expand Up @@ -45,8 +47,12 @@
('1-bottom-a', _('Section 1 - Bottom A')),
('1-bottom-b', _('Section 1 - Bottom B')),
('1-bottom-c', _('Section 1 - Bottom C')),
)
),

# section 2
('section-2',
(
('2-top-a', _('Section 2 - Top A')),
('2-top-b', _('Section 2 - Top B')),
('2-top-c', _('Section 2 - Top C')),
Expand Down Expand Up @@ -76,8 +82,11 @@
('2-bottom-a', _('Section 2 - Bottom A')),
('2-bottom-b', _('Section 2 - Bottom B')),
('2-bottom-c', _('Section 2 - Bottom C')),
)
),

# section 3
('section-3',
(
('3-top-a', _('Section 3 - Top A')),
('3-top-b', _('Section 3 - Top B')),
('3-top-c', _('Section 3 - Top C')),
Expand Down Expand Up @@ -107,6 +116,8 @@
('3-bottom-a', _('Section 3 - Bottom A')),
('3-bottom-b', _('Section 3 - Bottom B')),
('3-bottom-c', _('Section 3 - Bottom C')),
)
),
)


Expand All @@ -123,4 +134,4 @@

# CDN FOR STATICS
UNICMS_TEMPLATE_ITALIA_USE_CDN = False
UNICMS_TEMPLATE_ITALIA_CDN = 'https://cdn.jsdelivr.net/gh/UniversitaDellaCalabria/[email protected].2/src/unicms_template_italia/static'
UNICMS_TEMPLATE_ITALIA_CDN = 'https://cdn.jsdelivr.net/gh/UniversitaDellaCalabria/[email protected].3/src/unicms_template_italia/static'

0 comments on commit 2fde327

Please sign in to comment.