From 36488129566c70abdbaf1d91415507e66e68d505 Mon Sep 17 00:00:00 2001 From: "lina.wolf" Date: Sun, 8 Dec 2024 08:10:56 +0100 Subject: [PATCH] [FEATURE] Adjust Templates and TS to Site Package Tutorial --- .../BackendLayouts/default.tsconfig.twig | 12 +- ...le.tsconfig.twig => subpage.tsconfig.twig} | 15 +-- .../Navigation/breadcrumb.typoscript | 12 ++ .../TypoScript/Navigation/menu.typoscript | 7 ++ .../TypoScript/configuration.typoscript | 9 ++ .../TypoScript/page.typoscript.twig | 16 +++ .../settings.definitions.yaml.twig | 38 +++++++ .../Sets/SitePackage/settings.yaml.twig | 38 ++----- .../Sets/SitePackage/setup.typoscript.twig | 104 +----------------- .../Initialisation/Site/main/config.yaml.twig | 2 +- .../Private/Language/locallang_be.xlf.twig | 3 + .../PageView/Layouts/Default.html.twig | 21 ---- .../PageView/Layouts/PageLayout.html.twig | 9 ++ .../Private/PageView/Pages/Default.html.twig | 19 +--- .../Private/PageView/Pages/Example.html.twig | 26 ----- .../Private/PageView/Pages/Subpage.html.twig | 18 +++ .../PageView/Partials/Content.html.twig | 6 +- .../PageView/Partials/Footer.html.twig | 13 +++ .../PageView/Partials/Header.html.twig | 15 +++ .../Partials/Navigation/Breadcrumb.html | 22 ++++ .../Partials/Navigation/FooterMenu.html | 4 + .../PageView/Partials/Navigation/Menu.html | 13 +++ .../Private/PageView/Partials/Stage.html | 9 ++ .../13.4/src/Resources/Public/Css/main.css | 21 ++++ .../src/Resources/Public/Icons/Extension.svg | 4 +- .../src/Resources/Public/Icons/favicon.ico | Bin 1150 -> 16958 bytes .../13.4/src/Resources/Public/Images/logo.svg | 1 + 27 files changed, 252 insertions(+), 205 deletions(-) rename resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/{example.tsconfig.twig => subpage.tsconfig.twig} (85%) create mode 100644 resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/breadcrumb.typoscript create mode 100644 resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/menu.typoscript create mode 100644 resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/configuration.typoscript create mode 100644 resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/page.typoscript.twig create mode 100644 resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.definitions.yaml.twig delete mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/Default.html.twig create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/PageLayout.html.twig delete mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Example.html.twig create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Subpage.html.twig create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Footer.html.twig create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Header.html.twig create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Breadcrumb.html create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/FooterMenu.html create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Menu.html create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Stage.html create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Public/Css/main.css create mode 100644 resources/packages/site_package_tutorial/13.4/src/Resources/Public/Images/logo.svg diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/default.tsconfig.twig b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/default.tsconfig.twig index a7300948..092e7db6 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/default.tsconfig.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/default.tsconfig.twig @@ -12,6 +12,16 @@ mod { rowCount = 1 rows { 1 { + columns { + 1 { + name = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.column.stage + colPos = 1 + identifier = stage + slideMode = slide + } + } + } + 2 { columns { 1 { name = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.column.normal @@ -23,7 +33,7 @@ mod { } } } - icon = EXT:{{ package.extensionKey }}/Resources/Public/Icons/BackendLayouts/example.svg + icon = EXT:{{ package.extensionKey }}/Resources/Public/Icons/BackendLayouts/default.svg } } } diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/example.tsconfig.twig b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/subpage.tsconfig.twig similarity index 85% rename from resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/example.tsconfig.twig rename to resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/subpage.tsconfig.twig index ef3256af..16c461bc 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/example.tsconfig.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/subpage.tsconfig.twig @@ -4,8 +4,8 @@ mod { web_layout { BackendLayouts { - example { - title = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.example + Subpage { + title = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.subpage config { backend_layout { colCount = 2 @@ -15,9 +15,10 @@ mod { columns { 1 { name = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.column.stage - colPos = 0 - identifier = stage + colPos = 1 colspan = 2 + identifier = stage + slideMode = slide } } } @@ -31,15 +32,15 @@ mod { 2 { name = LLL:EXT:{{ package.extensionKey }}/Resources/Private/Language/locallang_be.xlf:backend_layout.column.right colPos = 2 - identifier = right - slideMode = slide + identifier = sidebar + slideMode = collectReverse } } } } } } - icon = EXT:{{ package.extensionKey }}/Resources/Public/Icons/BackendLayouts/example.svg + icon = EXT:{{ package.extensionKey }}/Resources/Public/Icons/BackendLayouts/subpage.svg } } } diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/breadcrumb.typoscript b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/breadcrumb.typoscript new file mode 100644 index 00000000..ca963b5d --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/breadcrumb.typoscript @@ -0,0 +1,12 @@ +page { + 10 { + dataProcessing { + 30 = menu + 30 { + special = rootline + special.range = 0|-1 + as = breadcrumb + } + } + } +} diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/menu.typoscript b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/menu.typoscript new file mode 100644 index 00000000..2355f8f4 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/menu.typoscript @@ -0,0 +1,7 @@ +page { + 10 { + dataProcessing { + 20 = menu + } + } +} diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/configuration.typoscript b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/configuration.typoscript new file mode 100644 index 00000000..0fdf274a --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/configuration.typoscript @@ -0,0 +1,9 @@ +// Part 4: global site configuration +config { + # Adjust the title tag to be displayed as “website - page title” + pageTitleSeparator = - + pageTitleSeparator.noTrimWrap = | | | + + # Display the Admin Panel at the bottom of pages to logged in backend users + admPanel = 1 +} diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/page.typoscript.twig b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/page.typoscript.twig new file mode 100644 index 00000000..f2456775 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/page.typoscript.twig @@ -0,0 +1,16 @@ +page = PAGE +page { + 10 = PAGEVIEW + 10 { + paths { + 0 = EXT:{{ package.extensionKey }}/Resources/Private/PageView/ + 10 = {${{ package.packageName }}.template_path} + } + + dataProcessing { + # makes content elements available as {content} in Fluid template + 10 = page-content + } + } + shortcutIcon = {${{ package.packageName }}.favicon} +} diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.definitions.yaml.twig b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.definitions.yaml.twig new file mode 100644 index 00000000..38e0b12b --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.definitions.yaml.twig @@ -0,0 +1,38 @@ +categories: + {{ package.packageName }}: + label: '{{ package.title }}' + {{ package.packageName }}.templates: + label: 'Templates' + parent: {{ package.packageName }} + {{ package.packageName }}.layout: + label: 'Layout' + parent: {{ package.packageName }} + +settings: + {{ package.packageName }}.template_path: + label: 'Page template path' + category: {{ package.packageName }}.templates + description: 'Path to the templates of the {{ package.title }}.' + type: string + default: 'EXT:{{ package.extensionKey }}/Resources/Private/Templates/' + + {{ package.packageName }}.logo: + label: 'Logo' + category: {{ package.packageName }}.layout + description: 'Path to the logo of {{ package.title }}.' + type: string + default: 'EXT:{{ package.extensionKey }}/Resources/Public/Images/logo.svg' + + {{ package.packageName }}.logo-alt: + label: 'Logo Alt text' + category: {{ package.packageName }}.layout + description: 'Alternative text of the logo for the visually impaired' + type: string + default: 'Logo' + + {{ package.packageName }}.favicon: + label: 'Favicon' + description: 'This icon is displayed in search engine results and in the browser tab' + category: {{ package.packageName }}.layout + type: string + default: 'EXT:{{ package.extensionKey }}/Resources/Public/Icons/favicon.ico' diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.yaml.twig b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.yaml.twig index 7862ca31..042dc5f9 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.yaml.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.yaml.twig @@ -1,28 +1,12 @@ styles: - templates: - layoutRootPath: 'EXT:{{ package.extensionKey }}/Resources/Private/ContentElements/Layouts/' - partialRootPath: 'EXT:{{ package.extensionKey }}/Resources/Private/ContentElements/Partials/' - templateRootPath: 'EXT:{{ package.extensionKey }}/Resources/Private/ContentElements/Templates/' - -page: - pageview: - paths: 'EXT:{{ package.extensionKey }}/Resources/Private/PageView/' - - meta: - viewport: 'width=device-width, initial-scale=1' - robots: 'index,follow' - apple-mobile-web-app-capable: 'no' - compatible: 'IE=edge' - - tracking: - google: - trackingID: '' - anonymizeIp: '1' - -config: - no_cache: '0' - removeDefaultJS: '0' - admPanel: '1' - prefixLocalAnchors: 'all' - headerComment: 'build by sitepackagebuilder.com' - sendCacheHeaders: '1' + templates: + layoutRootPath: EXT:{{ package.extensionKey }}/Resources/Private/ContentElements/Layouts + partialRootPath: EXT:{{ package.extensionKey }}/Resources/Private/ContentElements/Partials + templateRootPath: EXT:{{ package.extensionKey }}/Resources/Private/ContentElements/Templates + content: + textmedia: + maxW: 1200 + maxWInText: 600 + linkWrap: + lightboxEnabled: true + lightboxCssClass: lightbox diff --git a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/setup.typoscript.twig b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/setup.typoscript.twig index af881eb5..5509a99f 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/setup.typoscript.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/setup.typoscript.twig @@ -1,102 +1,2 @@ -############## -#### PAGE #### -############## -page = PAGE -page { - typeNum = 0 - shortcutIcon = EXT:{{ package.extensionKey }}/Resources/Public/Icons/favicon.ico - - 10 = PAGEVIEW - 10 { - paths { - 0 = EXT:{{ package.extensionKey }}/Resources/Private/PageView/ - 1 = {$page.pageview.paths} - } - dataProcessing { - 10 = files - 10 { - references.fieldName = media - } - 20 = menu - 20 { - levels = 2 - includeSpacer = 1 - as = mainnavigation - } - 30 = page-content - } - } - - meta { - viewport = {$page.meta.viewport} - robots = {$page.meta.robots} - apple-mobile-web-app-capable = {$page.meta.apple-mobile-web-app-capable} - - X-UA-Compatible = {$page.meta.compatible} - X-UA-Compatible { - attribute = http-equiv - } - } - - includeCSSLibs { - - } - - includeCSS { - {{ package.extensionKey }}_layout = EXT:{{ package.extensionKey }}/Resources/Public/Css/layout.css - } - - includeJSLibs { - - } - - includeJS { - - } - - includeJSFooterlibs { - - } - - includeJSFooter { - {{ package.extensionKey }}_scripts = EXT:{{ package.extensionKey }}/Resources/Public/JavaScript/main.js - } -} - - -################ -#### CONFIG #### -################ -config { - absRefPrefix = auto - no_cache = {$config.no_cache} - uniqueLinkVars = 1 - pageTitleFirst = 1 - linkVars = L - prefixLocalAnchors = {$config.prefixLocalAnchors} - renderCharset = utf-8 - metaCharset = utf-8 - doctype = html5 - removeDefaultJS = {$config.removeDefaultJS} - inlineStyle2TempFile = 1 - admPanel = {$config.admPanel} - debug = 0 - cache_period = 86400 - sendCacheHeaders = {$config.sendCacheHeaders} - intTarget = - extTarget = - disablePrefixComment = 1 - index_enable = 1 - index_externals = 1 - index_metatags = 1 - headerComment = {$config.headerComment} - - // Disable Image Upscaling - noScaleUp = 1 - - // Compression and Concatenation of CSS and JS Files - compressJs = 0 - compressCss = 0 - concatenateJs = 0 - concatenateCss = 0 -} +@import './TypoScript/*.typoscript' +@import './TypoScript/Navigation/*.typoscript' diff --git a/resources/packages/site_package_tutorial/13.4/src/Initialisation/Site/main/config.yaml.twig b/resources/packages/site_package_tutorial/13.4/src/Initialisation/Site/main/config.yaml.twig index 237a99bd..199a6926 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Initialisation/Site/main/config.yaml.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Initialisation/Site/main/config.yaml.twig @@ -11,4 +11,4 @@ languages: navigationTitle: English flag: us rootPageId: 1 -websiteTitle: 'Example site' +websiteTitle: '{{ package.title }}' diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/Language/locallang_be.xlf.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/Language/locallang_be.xlf.twig index 4f7dd7ce..542eb196 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/Language/locallang_be.xlf.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/Language/locallang_be.xlf.twig @@ -9,6 +9,9 @@ Default + + Subpage + Stage diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/Default.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/Default.html.twig deleted file mode 100644 index ad57953f..00000000 --- a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/Default.html.twig +++ /dev/null @@ -1,21 +0,0 @@ - - diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/PageLayout.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/PageLayout.html.twig new file mode 100644 index 00000000..604adf2c --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Layouts/PageLayout.html.twig @@ -0,0 +1,9 @@ + + +
+ + + +
+ + diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Default.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Default.html.twig index 4df9efcd..aae3534b 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Default.html.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Default.html.twig @@ -1,19 +1,10 @@ - + -
-
-
Template file
-
- packages/{{ package.extensionKey }}/Resources/Private/PageView/Pages/Default.html -
-
Backend Configuration
-
- packages/{{ package.extensionKey }}/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/default.tsconfig -
-
-
+ - +
+ +
diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Example.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Example.html.twig deleted file mode 100644 index 33e25065..00000000 --- a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Example.html.twig +++ /dev/null @@ -1,26 +0,0 @@ - - - -
-
-
Template file
-
- packages/{{ package.extensionKey }}/Resources/Private/PageView/Pages/Default.html -
-
Backend Configuration
-
- packages/{{ package.extensionKey }}/Configuration/Sets/SitePackage/PageTsConfig/BackendLayouts/default.tsconfig -
-
-
- -
- -
-
- -
-
- -
-
diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Subpage.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Subpage.html.twig new file mode 100644 index 00000000..4db1efbc --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Pages/Subpage.html.twig @@ -0,0 +1,18 @@ + + + + + + +
+
+
+ +
+
+ +
+
+
+ +
diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Content.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Content.html.twig index 8ce77703..073e6525 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Content.html.twig +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Content.html.twig @@ -1,7 +1,7 @@ diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Footer.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Footer.html.twig new file mode 100644 index 00000000..88141be5 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Footer.html.twig @@ -0,0 +1,13 @@ +
+
+
+ + + + + © now {site.configuration.websiteTitle} +
+ + +
+
diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Header.html.twig b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Header.html.twig new file mode 100644 index 00000000..bd6b0ffb --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Header.html.twig @@ -0,0 +1,15 @@ + diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Breadcrumb.html b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Breadcrumb.html new file mode 100644 index 00000000..c1b4c28b --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Breadcrumb.html @@ -0,0 +1,22 @@ + +
+ +
+
diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/FooterMenu.html b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/FooterMenu.html new file mode 100644 index 00000000..270a85da --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/FooterMenu.html @@ -0,0 +1,4 @@ + diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Menu.html b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Menu.html new file mode 100644 index 00000000..2a326864 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Navigation/Menu.html @@ -0,0 +1,13 @@ + diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Stage.html b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Stage.html new file mode 100644 index 00000000..f4c88252 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Private/PageView/Partials/Stage.html @@ -0,0 +1,9 @@ + +
+ +
+
diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Css/main.css b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Css/main.css new file mode 100644 index 00000000..37ee76e5 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Css/main.css @@ -0,0 +1,21 @@ +:root { + --bs-border-radius: 0; + --bs-border-radius-sm: 0; + --bs-border-radius-lg: 0; + --bs-primary: #ff8700; + --bs-primary-bg-subtle: #ffcc99; +} + +.nav { + --bs-nav-link-color: var(--bs-body-color); + --bs-nav-link-hover-color: var(--bs-dark); +} + +.navbar-expand-lg .navbar-nav .nav-link.active { + border-bottom: 2px solid var(--bs-primary); +} + +.navbar-expand-lg .navbar-nav .nav-link:hover { + border-bottom: 2px solid var(--bs-primary-bg-subtle); +} + diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Icons/Extension.svg b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Icons/Extension.svg index d8536373..bca7a175 100644 --- a/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Icons/Extension.svg +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Icons/Extension.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Icons/favicon.ico b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Icons/favicon.ico index 46d4c14df35ee4ccdf7c5a7eba53f00bc4457963..90fdfe18b68aec23a129f42e06c7d0f48b664498 100644 GIT binary patch literal 16958 zcmdU1S%@7)6z%6kqbBA}VvI}Fr${8m=!c*pq7#i8R9rA5ia(-83=zfcBjU#!5xj0F zZp1`fZ~;Gpgybg*;(!w40)`+4!RUxe#0BGqqsCm%>3TKxdo$Cox?WZHIN{Fis;)Zs zoZJ0+x|WwDso~$EMG1Z%lgvLiN#-O;G9QMjWDv&s^k-3$%$jD*R7CtOT1!OxVJl$o z!}hf7J^0&TvtfM^8B_~xG=2$fwNIJH1mB|Z%AS;qeSgCx5J2ea9A-O zXrfP5pxx$xe-o;EKN3B=LhUvOmw8;ZFkSrL?Jf6E{_rq@3ZRHyhim`$B)I;};Rmq& z3b603spxdX+d4_KQ$NSexArEgKyT5-lSsS$4DAM|xdl}CHRXLKx@(f?=R6w6M$f}u zgWcjMsz5K%n-Rz6yh?u!c+}gNiyqWg4qXu47cr~8_M9I(HncP+Jkc8vyUJ(&cZh$c z6W7pf%qxnk{0oVmtmC|cI|cD(!RY2?1TxnR*b6<&KjZ)e1~ zq|TV4Ybw-#p)=1I4f!`#^v8tQN+2&*YeO-ym-BYj56Bn&|rvEX(gtlus+11JO%6aI%;& zkMH#0+7GU;=kVn-?5sk#qMLH?V(H&qh$9=Damh;#Tt7maerNo0=d^7;mpk*b4MkTw zXt($e*lxLA^r`}w7Q0u!4Kb(Z^6ES(dXWdu?qev?jUKqY>R;U{FSpG3f4}kg_Aar|H=~eZyb&5av=I)ByP_F*X*qmEmQwFF0#`$q9;Vs&U@x#*vwX(^7K24 zM?=v^BkJe7-VrVRS451H{d~S$L_RphUUxjTrGI`&`j-*XKg+9KkrJrNU z&m+eo_oE8v=l;Uj*wXca`sHS~DEeQkq(m&#gy8c#p# z_@+$mleN6C7g_&dLy3(5g_}q~}&Oa1AGC;iU+WDOw z*B^6Fa=qaz7{_of_}Mo1xP}7uau57$EZ5`W`%BFHGx>2$&bfQnSZmSNb<97v0IqBN z&US-{;r2Wp@4|8H#BnUwS&*8EvwcGz{{S9KV71P$LCT^R z1N&hZ^T9P;u0h&4>s2`Jo^$SL4EKFHen*8IcED~7qR|z^JUK1NNo;Uk&jt75^&+muvotXAGY$=TOw98?9X7C-B z-_7ZVxxH&bxZ-O}n*QubnyDX222wwq)Kfo{Ol|qT)Z_mXpx>Kz{?G40xrzD__<@#h zz;kt*K=cF}&UgY2p-jNRj3*-$$u9LXOc>%aEaNa7Pt&uz^$br~dWOq}Cyim$H}qcP z_tsKBfE2L4Ig&K3A7XiTGC+@$1B1pl;A`Mqw;t7f;Ld%?^ju%+1LxF(EB#b>KKre& zqs-?|9h~VKoqnWMpY?-i2Q9UsmdEh`%V?8&V5A-#j2|}bk%$J`Atl3g_y#gnN1rBA Ift>Z}zoG#Le*gdg literal 1150 zcmaKszb^zq6vrP&t{`y*Vj}8oqXL6Y$R~|E{BN6xxSFH~V-8J?S315x+S4 zj-Y)ybmKo(YfpQ6?x1gZYOBicJEMBKKl2?Y;7851p!}yw*Ju2g^_YOA4@`k=u$$QG%PiuMovJt++@ORg$yF+-?obfjA|?e@V(Z#s}~VJtDD0 diff --git a/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Images/logo.svg b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Images/logo.svg new file mode 100644 index 00000000..bca7a175 --- /dev/null +++ b/resources/packages/site_package_tutorial/13.4/src/Resources/Public/Images/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file