Compare commits
10 commits
a110bbc0a3
...
fb1caf483f
Author | SHA1 | Date | |
---|---|---|---|
fb1caf483f | |||
3aad50395c | |||
f74d4fc67f | |||
ce57c2db4d | |||
70ec63a8a9 | |||
d2bf6446ce | |||
ce680a0770 | |||
4039ac8ffe | |||
a77209bbde | |||
98373e9638 |
4 changed files with 33 additions and 5 deletions
|
@ -189,6 +189,7 @@ module.exports = function(eleventyConfig) {
|
||||||
eleventyConfig.addPassthroughCopy({"js":"assets/js"});
|
eleventyConfig.addPassthroughCopy({"js":"assets/js"});
|
||||||
eleventyConfig.addPassthroughCopy("css");
|
eleventyConfig.addPassthroughCopy("css");
|
||||||
eleventyConfig.addPassthroughCopy("CNAME");
|
eleventyConfig.addPassthroughCopy("CNAME");
|
||||||
|
eleventyConfig.addPassthroughCopy({"did.json":".well-known/did.json"});
|
||||||
|
|
||||||
eleventyConfig.addPlugin(pluginRss);
|
eleventyConfig.addPlugin(pluginRss);
|
||||||
|
|
||||||
|
|
2
CNAME
2
CNAME
|
@ -1 +1 @@
|
||||||
death.id.au
|
www.death.id.au
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
layout: layout-main.njk
|
layout: layout-main.njk
|
||||||
eleventyExcludeFromCollections: true
|
eleventyExcludeFromCollections: true
|
||||||
---
|
---
|
||||||
<div>
|
<div class="h-entry">
|
||||||
<h1>
|
<h1>
|
||||||
Privacy Policy
|
Privacy Policy
|
||||||
</h1>
|
</h1>
|
||||||
|
@ -18,7 +18,7 @@ eleventyExcludeFromCollections: true
|
||||||
collection, use, and disclosure of Personal Information for those that
|
collection, use, and disclosure of Personal Information for those that
|
||||||
play my GAME(S).</p>
|
play my GAME(S).</p>
|
||||||
|
|
||||||
<h2>Information Collection and Use</div>
|
<h2>Information Collection and Use</h2>
|
||||||
|
|
||||||
<p>No information about you is directly collected by me. My GAME(S) do
|
<p>No information about you is directly collected by me. My GAME(S) do
|
||||||
not require elevated privileges, or require any connection to the Internet.</p>
|
not require elevated privileges, or require any connection to the Internet.</p>
|
||||||
|
@ -34,8 +34,9 @@ eleventyExcludeFromCollections: true
|
||||||
<li><a href="https://policies.google.com/privacy">Google Services</a></li>
|
<li><a href="https://policies.google.com/privacy">Google Services</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h2>Contact</div>
|
<h2>Contact</h2>
|
||||||
|
|
||||||
<p>If you have any questions or suggestions about my Privacy Policy,
|
<p>If you have any questions or suggestions about my Privacy Policy,
|
||||||
reach out to me at death.au@death.id.au</p>
|
reach out to me at death.au@death.id.au</p>
|
||||||
|
<p><small>P.S. This template was mostly copied from http://amirrajan.net/privacy/ (Thanks Amir!)</small></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
26
did.json
Normal file
26
did.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"@context": [
|
||||||
|
"https://www.w3.org/ns/did/v1",
|
||||||
|
"https://w3id.org/security/suites/jws-2020/v1"
|
||||||
|
],
|
||||||
|
"id": "did:web:death.id.au",
|
||||||
|
"verificationMethod": [
|
||||||
|
{
|
||||||
|
"id": "did:web:death.id.au#main-key",
|
||||||
|
"type": "JsonWebKey2020",
|
||||||
|
"controller": "did:web:death.id.au",
|
||||||
|
"publicKeyJwk": {
|
||||||
|
"crv": "P-521",
|
||||||
|
"kty": "EC",
|
||||||
|
"x": "AV7Zc8WzwXPuedOESKP3qovXfqynZoysd0ppnR12gAVdMF0Hs_tCtc2N_C77oHm5KYcIW1qE_75CZO1dTCm2a9aU",
|
||||||
|
"y": "AXC_ELu67FGfZUA7RNwDrKEmyfvzvKNnjLcZ4X70-uD29o5NHGAQ1AUZcnLG-LUQywMCSSeH_7YijrEGrvAJbeoi"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"authentication": [
|
||||||
|
"did:web:death.id.au#main-key"
|
||||||
|
],
|
||||||
|
"assertionMethod": [
|
||||||
|
"did:web:death.id.au#main-key"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue