File tree Expand file tree Collapse file tree 6 files changed +17
-109
lines changed Expand file tree Collapse file tree 6 files changed +17
-109
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ See [SECURITY.md](./SECURITY.md).
141
141
142
142
### Production dependencies
143
143
144
- This project has ** 52 ** ` dependencies ` .
144
+ This project has ** 53 ** ` dependencies ` .
145
145
146
146
| Package | Version |
147
147
| ---| ---|
@@ -186,6 +186,7 @@ This project has **52** `dependencies`.
186
186
| [ postcss] ( https://www.npmjs.com/package/postcss ) | ` ^8.4.47 ` |
187
187
| [ postcss-cli] ( https://www.npmjs.com/package/postcss-cli ) | ` ^11.0.0 ` |
188
188
| [ sanitize-html] ( https://www.npmjs.com/package/sanitize-html ) | ` ^2.13.1 ` |
189
+ | [ seia] ( https://www.npmjs.com/package/seia ) | ` ^0.2.2 ` |
189
190
| [ slugify] ( https://www.npmjs.com/package/slugify ) | ` ^1.6.6 ` |
190
191
| [ stripe] ( https://www.npmjs.com/package/stripe ) | ` ^17.2.1 ` |
191
192
| [ tailwindcss] ( https://www.npmjs.com/package/tailwindcss ) | ` ^3.4.14 ` |
Original file line number Diff line number Diff line change @@ -335,7 +335,9 @@ export default function (eleventyConfig) {
335
335
'node_modules/@11ty/is-land/is-land.js' : 'assets/js/is-land.js' ,
336
336
'node_modules/@11ty/is-land/is-land-autoinit.js' :
337
337
'assets/js/is-land-autoinit.js' ,
338
- 'node_modules/instant.page/instantpage.js' : 'assets/js/instantpage.js'
338
+ 'node_modules/instant.page/instantpage.js' : 'assets/js/instantpage.js' ,
339
+ 'node_modules/seia/dist/seia.js' : 'assets/js/seia.js' ,
340
+ 'node_modules/seia/dist/styles' : 'assets/css/seia/styles'
339
341
} )
340
342
341
343
// https://www.11ty.dev/docs/shortcodes/
Original file line number Diff line number Diff line change 118
118
"postcss" : " ^8.4.47" ,
119
119
"postcss-cli" : " ^11.0.0" ,
120
120
"sanitize-html" : " ^2.13.1" ,
121
+ "seia" : " ^0.2.2" ,
121
122
"slugify" : " ^1.6.6" ,
122
123
"stripe" : " ^17.2.1" ,
123
124
"tailwindcss" : " ^3.4.14" ,
Original file line number Diff line number Diff line change @@ -133,8 +133,9 @@ const main = async () => {
133
133
'connect-src' : [
134
134
'self' ,
135
135
'cloudflareinsights.com' ,
136
+ `https://webmention.io/${ domain } /webmention` ,
136
137
'res.cloudinary.com' ,
137
- `https:// webmention.io/ ${ domain } /webmention`
138
+ ' webmention.io'
138
139
] ,
139
140
140
141
'default-src' : [ 'none' ] ,
Original file line number Diff line number Diff line change @@ -50,6 +50,8 @@ section: post
50
50
<call-to-action ></call-to-action >
51
51
{% endrenderTemplate %}
52
52
53
+ <s-e-i-a css =" .h-cite{padding:1rem};" ></s-e-i-a >
54
+
53
55
{% renderTemplate " webc" %}
54
56
<webmentions-section ></webmentions-section >
55
57
{% endrenderTemplate %}
@@ -76,3 +78,4 @@ section: post
76
78
77
79
{# external JS assets #}
78
80
<script data-helmet async src =" /assets/js/sw-registration.js" ></script >
81
+ <script data-helmet async src =" /assets/js/seia.js" type =" module" ></script >
You can’t perform that action at this time.
0 commit comments