-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into production
- Loading branch information
Showing
62 changed files
with
3,553 additions
and
288 deletions.
There are no files selected for viewing
1 change: 0 additions & 1 deletion
1
resources/packages/site_package_tutorial/13.4/src/Classes/Controller/.gitkeep
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
resources/packages/site_package_tutorial/13.4/src/Classes/Domain/.gitkeep
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
resources/packages/site_package_tutorial/13.4/src/Classes/Domain/Model/.gitkeep
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
resources/packages/site_package_tutorial/13.4/src/Classes/Domain/Repository/.gitkeep
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
resources/packages/site_package_tutorial/13.4/src/Classes/ViewHelpers/.gitkeep
This file was deleted.
Oops, something went wrong.
42 changes: 0 additions & 42 deletions
42
resources/packages/site_package_tutorial/13.4/src/Configuration/RTE/Default.yaml.twig
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...ckage_tutorial/13.4/src/Configuration/Sets/SitePackage/PageTsConfig/general.tsconfig.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
TCEFORM { | ||
pages { | ||
# Hide "Frontend Layout" field as we use the "Backend Layout" for the complete layout | ||
layout { | ||
disabled = 1 | ||
} | ||
} | ||
tt_content { | ||
header_layout { | ||
# Prevent H1 headlines in content elements | ||
removeItems = 1 | ||
} | ||
} | ||
} | ||
|
||
TCEMAIN { | ||
pages { | ||
# Pages will *not* have "(copy)" appended: | ||
disablePrependAtCopy = 1 | ||
# Pages will *not* be hidden upon copy: | ||
disableHideAtCopy = 1 | ||
} | ||
tt_content { | ||
# Content will *not* have "(copy)" appended: | ||
disablePrependAtCopy = 1 | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...orial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/breadcrumb.typoscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
page { | ||
10 { | ||
dataProcessing { | ||
30 = menu | ||
30 { | ||
special = rootline | ||
special.range = 0|-1 | ||
as = breadcrumb | ||
} | ||
} | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...ge_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/Navigation/menu.typoscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
page { | ||
10 { | ||
dataProcessing { | ||
20 = menu | ||
} | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
...kage_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/configuration.typoscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
16 changes: 16 additions & 0 deletions
16
..._package_tutorial/13.4/src/Configuration/Sets/SitePackage/TypoScript/page.typoscript.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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} | ||
} |
20 changes: 1 addition & 19 deletions
20
...packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/page.tsconfig.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
@import './PageTsConfig/' | ||
@import './PageTsConfig/BackendLayouts/' | ||
|
||
RTE { | ||
default { | ||
preset = {{ package.extensionKey }} | ||
} | ||
} | ||
|
||
TCEFORM { | ||
pages { | ||
|
||
} | ||
tt_content { | ||
|
||
} | ||
} | ||
|
||
TCEMAIN { | ||
|
||
} | ||
|
38 changes: 38 additions & 0 deletions
38
...e_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.definitions.yaml.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' |
38 changes: 11 additions & 27 deletions
38
...packages/site_package_tutorial/13.4/src/Configuration/Sets/SitePackage/settings.yaml.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.