Skip to content

Commit 21f1ba4

Browse files
authored
Merge pull request #475 from itk-dev/feature/3993-new-frontpage-elements
Feature - New elements for landing pages
2 parents 616c7db + 0d648fe commit 21f1ba4

File tree

113 files changed

+5520
-1164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+5520
-1164
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
COMPOSE_PROJECT_NAME=hoeringsportal
22
COMPOSE_DOMAIN=hoeringsportal.local.itkdev.dk
3+
ITKDEV_TEMPLATE=drupal-10

.github/workflows/pr.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ jobs:
5252
steps:
5353
- uses: actions/checkout@v4
5454
- uses: arduino/setup-task@v2
55+
# https://github.com/arduino/setup-task/tree/main?tab=readme-ov-file#repo-token
56+
with:
57+
repo-token: ${{ secrets.GITHUB_TOKEN }}
5558
- run: |
5659
docker network create frontend
5760
task compose -- up --detach
@@ -70,6 +73,8 @@ jobs:
7073
steps:
7174
- uses: actions/checkout@v4
7275
- uses: arduino/setup-task@v2
76+
with:
77+
repo-token: ${{ secrets.GITHUB_TOKEN }}
7378
- run: task coding-standards:assets:check
7479
# Check for any changes (task …:check runs task …:apply)
7580
- run: git diff --exit-code
@@ -80,6 +85,8 @@ jobs:
8085
steps:
8186
- uses: actions/checkout@v4
8287
- uses: arduino/setup-task@v2
88+
with:
89+
repo-token: ${{ secrets.GITHUB_TOKEN }}
8390
- run: task coding-standards:markdown:check
8491
# Check for any changes (task …:check runs task …:apply)
8592
- run: git diff --exit-code
@@ -90,6 +97,8 @@ jobs:
9097
steps:
9198
- uses: actions/checkout@v4
9299
- uses: arduino/setup-task@v2
100+
with:
101+
repo-token: ${{ secrets.GITHUB_TOKEN }}
93102
- run: |
94103
docker network create frontend
95104
task compose -- up --detach
@@ -104,6 +113,8 @@ jobs:
104113
steps:
105114
- uses: actions/checkout@v4
106115
- uses: arduino/setup-task@v2
116+
with:
117+
repo-token: ${{ secrets.GITHUB_TOKEN }}
107118
- run: |
108119
docker network create frontend
109120
task compose -- up --detach
@@ -118,6 +129,8 @@ jobs:
118129
steps:
119130
- uses: actions/checkout@v4
120131
- uses: arduino/setup-task@v2
132+
with:
133+
repo-token: ${{ secrets.GITHUB_TOKEN }}
121134
- run: |
122135
docker network create frontend
123136
task compose -- up --detach

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
88

9+
* [PR-494](https://github.com/itk-dev/hoeringsportal/pull/494)
10+
* Add config for default teaser images
11+
* [PR-480](https://github.com/itk-dev/hoeringsportal/pull/480)
12+
* New paragraph section for content promotion
13+
* [PR-475](https://github.com/itk-dev/hoeringsportal/pull/475)
14+
* New landingpage hero
15+
* [PR-490](https://github.com/itk-dev/hoeringsportal/pull/490)
16+
* Added hearing reply fixtures
17+
* Fixed ticket author template
18+
* [PR-489](https://github.com/itk-dev/hoeringsportal/pull/489)
19+
Feat: Redesigned teaser cards that makes the cards easier to distinguish from each other when listed on the same page.
920
* [PR-491](https://github.com/itk-dev/hoeringsportal/pull/491)
1021
Optimized development setup
1122

composer.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@
5656
"drupal/redirect": "^1.6",
5757
"drupal/search_api": "^1.37",
5858
"drupal/search_autocomplete": "^3.0",
59+
"drupal/svg_image": "^3.2",
60+
"drupal/svg_sanitizer": "^2.0",
5961
"drupal/token_filter": "^2.1",
6062
"drupal/toolbar_visibility": "^2.1",
6163
"drupal/twig_tweak": "^3.2",

0 commit comments

Comments
 (0)