Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hugo/themes/dora-2025/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</div>
<div class="license">
DORA is a program run by Google Cloud. All content on this site is licensed by Google LLC under <a
href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>, unless otherwise specified.
href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>, unless otherwise specified.
</div>
<div class="socials">
<a class="google-material-icons" href="https://www.linkedin.com/company/doradotdev/" target="_blank"
Expand Down
4 changes: 2 additions & 2 deletions hugo/themes/dora-2025/theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# See https://github.com/gohugoio/hugoThemes#themetoml for an example

name = "dora-2025"
license = "CC BY-NC-SA 4.0 DEED"
licenselink = "https://creativecommons.org/licenses/by-nc-sa/4.0/"
license = "CC BY 4.0 DEED"
licenselink = "https://creativecommons.org/licenses/by/4.0/"
description = ""
homepage = ""
tags = []
Expand Down
2 changes: 1 addition & 1 deletion test/playwright/tests/footer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { test, expect } from '@playwright/test';

test('Links in footer are visible', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('contentinfo')).toContainText('DORA is a program run by Google Cloud. All content on this site is licensed by Google LLC under CC BY-NC-SA 4.0, unless otherwise specified.');
await expect(page.getByRole('contentinfo')).toContainText('DORA is a program run by Google Cloud. All content on this site is licensed by Google LLC under CC BY 4.0, unless otherwise specified.');
await expect(page.getByRole('link', { name: 'Resources' })).toBeVisible();
await expect(page.getByRole('link', { name: 'FAQ' })).toBeVisible();
await expect(page.getByRole('link', { name: 'Contact Us' })).toBeVisible();
Expand Down
Loading