Skip to content

Commit 3627872

Browse files
authored
404 (#2838)
💄 style(html): add shortcut icon link - add shortcut icon link for better browser compatibility 🔧 chore(structure): reorganize static config file - move staticwebapp.config.json to static directory for better organization
2 parents a32055f + 84caa75 commit 3627872

File tree

10 files changed

+47
-4
lines changed

10 files changed

+47
-4
lines changed

.github/workflows/main.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,31 @@ jobs:
8181
- uses: dorny/paths-filter@v3
8282
id: filter
8383
with:
84+
list-files: json
8485
filters: |
8586
src:
86-
- '**'
87-
- '!docs/**'
87+
- 'src/**'
8888
docs:
8989
- 'docs/**'
9090
automation:
9191
- 'build/**'
92-
- '.github/workflows/**'
92+
- '.github/**'
93+
- name: "Debug Filter Results"
94+
shell: pwsh
95+
run: |
96+
Write-Output "=== PATH FILTER DEBUG ==="
97+
Write-Output "src filter result: ${{ steps.filter.outputs.src }}"
98+
Write-Output "docs filter result: ${{ steps.filter.outputs.docs }}"
99+
Write-Output "automation filter result: ${{ steps.filter.outputs.automation }}"
100+
Write-Output "src files:"
101+
Write-Output '${{ steps.filter.outputs.src_files }}'
102+
Write-Output "docs files:"
103+
Write-Output '${{ steps.filter.outputs.docs_files }}'
104+
Write-Output "automation files:"
105+
Write-Output '${{ steps.filter.outputs.automation_files }}'
106+
Write-Output "changes array:"
107+
Write-Output '${{ steps.filter.outputs.changes }}'
108+
Write-Output "========================="
93109
- name: "Build NKDAgility Outputs"
94110
shell: pwsh
95111
id: nkdagility

docs/layouts/baseof.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@
1111
})(window,document,'script','dataLayer','{{ .Site.Params.googleTagId }}');</script>
1212
<!-- End Google Tag Manager -->
1313
<title>{{ .Title }} | {{ .Site.Title }}</title>
14-
<link rel="icon" href="{{ .Site.Params.favicon | default "/favicon.ico" }}" type="image/x-icon" />
14+
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
15+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
16+
<link rel="shortcut icon" href="/favicon.ico" />
17+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
18+
<meta name="apple-mobile-web-app-title" content="Azure DevOps Migration Tools" />
19+
<link rel="manifest" href="/site.webmanifest" />
1520
<meta name="description" content="{{ ( .Page.Params.description | default .Site.Params.description) | plainify }}" />
1621
<meta name="keywords" content="{{ .Keywords | default .Site.Params.keywords }}" />
1722
<link rel="canonical" href="{{ .Site.Params.siteProdUrl }}{{ .RelPermalink }}" />

docs/static/apple-touch-icon.png

18.4 KB
Loading

docs/static/favicon-96x96.png

7.56 KB
Loading

docs/static/favicon.ico

-37.5 KB
Binary file not shown.

docs/static/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/static/site.webmanifest

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Azure DevOps Migration Tools",
3+
"short_name": "DevOpsMigration",
4+
"icons": [
5+
{
6+
"src": "/web-app-manifest-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png",
9+
"purpose": "maskable"
10+
},
11+
{
12+
"src": "/web-app-manifest-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png",
15+
"purpose": "maskable"
16+
}
17+
],
18+
"theme_color": "#ffffff",
19+
"background_color": "#ffffff",
20+
"display": "standalone"
21+
}
22.7 KB
Loading
121 KB
Loading

0 commit comments

Comments
 (0)