Skip to content

Commit 284d0eb

Browse files
committed
update theme and Hugo
1 parent e5e42dc commit 284d0eb

File tree

5 files changed

+8
-101
lines changed

5 files changed

+8
-101
lines changed

.github/workflows/build_and_deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Hugo
1717
uses: peaceiris/[email protected]
1818
with:
19-
hugo-version: '0.58.3'
19+
hugo-version: '0.67.0'
2020
- name: Build user manual
2121
run: make build-manual
2222
- name: Build developer manual
@@ -44,4 +44,4 @@ jobs:
4444
source: 'build/dev'
4545
target: ${{ secrets.DEPLOY_TARGET_PATH }}/dev
4646
rm: true
47-
strip_components: 2
47+
strip_components: 2

docs/dev/framework/front-end-modules.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ Creating a front end module is very similar to creating [content elements][1].
2828

2929
To create a new front end module, the following things must be defined and implemented:
3030

31-
* __Fragment Controller__<br>
31+
* __Fragment Controller__ <br>
3232
The actual implementation of the front end module is done via a class that extends
3333
from `AbstractFrontendModuleController` of the Contao core.
3434

35-
* __Service Tag__<br>
35+
* __Service Tag__ <br>
3636
To identify the controller as a Contao front end module, the service must be tagged
3737
with service tag `contao.frontend_module`.
3838

39-
* __Type__<a id="type"></a><br>
39+
* __Type__ <a id="type"></a><br>
4040
The *type* of a front end module is a specifig string which is used to identify
4141
the front end module's template and DCA palette. The `type` can be set in the
4242
service tag. If ommitted the type will be automatically generated by converting the
4343
class name of the controller from pascal case to snake case and removing a possible
4444
`Controller` postfix.
4545

46-
* __Category__<br>
46+
* __Category__ <br>
4747
All front end modules are categorised within the type dropdown of the front
4848
end module's palette. A `category` must be defined in the service tag for each
4949
module.
5050

51-
* __Template__<br>
51+
* __Template__ <br>
5252
The template name follows the naming convention mentioned beforehand. It prepends
5353
the *type* of the module with the prefix `mod_`.
5454

page/layouts/partials/footer.html

Lines changed: 0 additions & 77 deletions
This file was deleted.

page/layouts/partials/search.html

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)