We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30417f4 commit 3219c54Copy full SHA for 3219c54
2 files changed
.github/workflows/build.yml
@@ -36,8 +36,8 @@ jobs:
36
# Move pages into root of build folder
37
- name: Move pages
38
run: |
39
- mv dist/4XX/*.html ./
40
- mv dist/5XX/*.html ./
+ mv dist/4XX/*.html dist/
+ mv dist/5XX/*.html dist/
41
42
# Deploy to GitHub Pages
43
- name: Deploy to GitHub Pages
src/icons/http-icon.pug
@@ -4,6 +4,7 @@ include ./composed/http-402-icon
4
include ./composed/http-403-icon
5
include ./composed/http-404-icon
6
include ./composed/http-405-icon
7
+include ./composed/http-418-icon
8
include ./composed/http-generic-icon
9
10
mixin HTTPIcon(code)
@@ -20,5 +21,7 @@ mixin HTTPIcon(code)
20
21
+HTTP404Icon()
22
else if(code == 405)
23
+HTTP405Icon()
24
+ else if(code == 418)
25
+ +HTTP418Icon()
26
else
27
+HTTPGenericIcon()
0 commit comments