Compare commits

...

7 Commits

Author SHA1 Message Date
David E. Perez Negron R. 386348c180 second try to deploy with a git 2024-04-30 22:02:16 -06:00
David E. Perez Negron R. d791f39a0a testing fleek.json missing git fix 2024-04-30 21:55:22 -06:00
David E. Perez Negron R. 172b12eb33 Adding vendor 2024-04-29 18:09:21 -06:00
David E. Perez Negron R. 90b60f3aec Adding fleek deployment data 2024-04-29 17:52:30 -06:00
David E. Perez Negron R. 8618bef364 Adding make relative for ipfs 2024-04-29 15:52:50 -06:00
David E. Perez Negron R. 15b77d1996 update gitignore: 2024-04-29 15:52:20 -06:00
David E. Perez Negron R. 3c266df7db initial template 2024-04-29 15:40:26 -06:00
9 changed files with 1611 additions and 0 deletions

7
.fleek.json Normal file
View File

@ -0,0 +1,7 @@
{
"build": {
"image": "denoland/deno",
"command": "apt update && apt -y install git && deno task build",
"publicDir": "_site"
}
}

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
_site
_cache
deno.lock

7
404.md Normal file
View File

@ -0,0 +1,7 @@
---
url: /404.html
---
# Content not found.
Go [home](/).

3
_cms.ts Normal file
View File

@ -0,0 +1,3 @@
import cms from "wiki/_cms.ts";
export default cms;

13
_config.ts Normal file
View File

@ -0,0 +1,13 @@
import lume from "lume/mod.ts";
import wiki from "wiki/mod.ts";
import relativeUrls from "lume/plugins/relative_urls.ts";
const site = lume({
location: new URL("https://dev.decentralizedscience.org"),
});
site.use(relativeUrls());
site.use(wiki());
export default site;

18
deno.json Normal file
View File

@ -0,0 +1,18 @@
{
"imports": {
"lume/": "https://deno.land/x/lume@v2.1.4/",
"wiki/": "https://deno.land/x/lume_theme_simple_wiki@v0.8.1/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.3.10/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | DENO_DIR=_vendor deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"cms": "deno task lume cms"
},
"compilerOptions": {
"types": [
"lume/types.ts"
]
}
}

1536
deno.lock Normal file

File diff suppressed because it is too large Load Diff

21
favicon.svg Normal file
View File

@ -0,0 +1,21 @@
<svg width="204" height="204" viewBox="0 0 204 204" fill="none" xmlns="http://www.w3.org/2000/svg">
<style>
path { fill: black }
rect { fill: white }
@media (prefers-color-scheme: dark) {
path { fill: white }
rect { fill: black }
}
</style>
<g clip-path="url(#clip0_347_441)">
<path d="M109.101 78.5092C94.3635 64.9692 81.938 53.5531 88.4027 27.2952C60.4821 61.9286 59.3798 73.4094 70.9216 102.953C78.555 122.515 68.0654 137.935 57.754 153.094C52.4869 160.838 47.2663 168.512 44.5314 176.636C30.8216 160.139 27.9976 144.342 30.8216 115.936C25.4552 132.474 17.7529 144.245 10.3272 155.594C10.1898 155.804 10.0525 156.014 9.91525 156.224L7.9476 159.228L6.01638 162.233C3.92324 165.524 1.89646 168.851 0 172.318V204H204V117.299C193.619 102.125 184.654 85.3552 184.654 58.6146C164.214 77.2349 161.12 96.4956 158.242 114.414C156.018 128.254 153.923 141.294 144.062 152.618C144.062 110.63 125.202 93.3021 109.101 78.5092Z"/>
<path d="M90.0789 0V0.0182087C90.085 0.0255289 90.0912 0.0328444 90.0974 0.0401554C96.8483 14.6686 97.1207 24.0354 97.3552 32.1004C97.7228 44.7449 97.9974 54.1894 123.001 75.6946C119.59 64.5616 120.297 57.8549 120.947 51.6871C121.623 45.27 122.239 39.4363 118.091 29.808C113.247 18.5601 108.662 15.3807 103.113 11.5325C99.3461 8.92056 95.1351 6.00049 90.0974 0.0401554C90.0912 0.0267747 90.0851 0.0133896 90.0789 0Z"/>
<path d="M58.8515 102.198C50.325 82.8507 48.7126 60.8179 56.1277 53.2612C37.5261 63.5583 23.4975 87.8308 33.7366 106.167C43.9848 124.504 46.1711 130.167 44.0759 154.002C44.7992 152.927 45.5196 151.865 46.2331 150.812C57.4069 134.329 66.8662 120.375 58.8515 102.198Z"/>
<path d="M138.224 35.0982C135.582 32.9394 132.543 30.4559 129.049 27.4227C135.015 41.9862 133.894 52.3277 132.906 61.453C131.476 74.6505 130.321 85.3043 151.277 102.507C149.434 91.4006 151.127 84.2178 152.725 77.4388C154.042 71.848 155.295 66.5319 154.447 59.5159C152.933 47.1177 148.706 43.6636 138.224 35.0982Z"/>
</g>
<defs>
<clipPath id="clip0_347_441">
<rect width="204" height="204"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

3
index.md Normal file
View File

@ -0,0 +1,3 @@
# Decentralized Science
Create markdown files to add pages.