Compare commits
12 Commits
port-tweak
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
fb4ffa2e1b | ||
|
ac86b9c53c | ||
|
b2a92ae967 | ||
|
79a8710a62 | ||
|
d5f3afdd6e | ||
|
06bca5ba85 | ||
|
c7e6ee7102 | ||
|
3ee8681b62 | ||
|
e1545d2229 | ||
|
b17e39e2f9 | ||
|
654d1eadaf | ||
210edb60f0 |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.obsidian/
|
@ -1,5 +0,0 @@
|
|||||||
FROM nginx:1.21-alpine
|
|
||||||
COPY public /usr/share/nginx/html
|
|
||||||
|
|
||||||
EXPOSE 8500
|
|
||||||
|
|
29
README.md
Normal file
29
README.md
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Wiki Cafe apex-site
|
||||||
|
|
||||||
|
The apex site is the site at https://wiki.cafe.
|
||||||
|
|
||||||
|
It's called apex site because that is the domain name terminology for the site pointing to second level domain.
|
||||||
|
|
||||||
|
## Adding content
|
||||||
|
|
||||||
|
If you just want to add content to the site add markdown files to an appropriate subdirectory in the `content` directory. New pages should go in `content/pages/`.
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
First, make sure you have Hugo installed
|
||||||
|
|
||||||
|
### Hugo
|
||||||
|
|
||||||
|
The site is built using Hugo, a static site generator. More information here:
|
||||||
|
|
||||||
|
https://gohugo.io/
|
||||||
|
|
||||||
|
### Work locally
|
||||||
|
|
||||||
|
Clone this repository to your computer with git.
|
||||||
|
|
||||||
|
This repository contains themes as git submodules. You will need to initialize, fetch and check out the submodules for the themes to work:
|
||||||
|
|
||||||
|
```
|
||||||
|
git submodule update --init --recursive
|
||||||
|
```
|
60
compose.yaml
Normal file
60
compose.yaml
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
services:
|
||||||
|
|
||||||
|
hugo:
|
||||||
|
image: hugomods/hugo:git-0.127.0
|
||||||
|
volumes:
|
||||||
|
- project:/src/site
|
||||||
|
- content:/src/site/content
|
||||||
|
- public:/src/site/public
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
command: 'hugo server -D -M -s site --bind="0.0.0.0" -b="https://draft.wiki.cafe" --appendPort=false'
|
||||||
|
# command: 'tail -f /dev/null'
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.services.apex_site.loadbalancer.server.port=1313"
|
||||||
|
- "traefik.http.routers.apex_site.rule=Host(`draft.wiki.cafe`)"
|
||||||
|
- "traefik.http.routers.apex_site.entrypoints=web-secure"
|
||||||
|
- "traefik.http.routers.apex_site.tls.certresolver=production"
|
||||||
|
- "caddy=https://draft.wiki.cafe"
|
||||||
|
- "caddy.reverse_proxy={{upstreams 1313}}"
|
||||||
|
- "caddy.tls.on_demand="
|
||||||
|
|
||||||
|
web-server:
|
||||||
|
image: nginx:1.23-alpine
|
||||||
|
volumes:
|
||||||
|
- public:/usr/share/nginx/html:ro
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
||||||
|
interval: 10s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 10
|
||||||
|
start_period: 15s
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
labels:
|
||||||
|
- "traefik.enable=true"
|
||||||
|
- "traefik.http.services.apex_wiki_cafe.loadbalancer.server.port=80"
|
||||||
|
- "traefik.http.routers.apex_wiki_cafe.rule=Host(`wiki.cafe`)"
|
||||||
|
- "traefik.http.routers.apex_wiki_cafe.entrypoints=web-secure"
|
||||||
|
- "traefik.http.routers.apex_wiki_cafe.tls.certresolver=production"
|
||||||
|
- "caddy=https://wiki.cafe"
|
||||||
|
- "caddy.reverse_proxy={{upstreams 80}}"
|
||||||
|
- "caddy.tls.on_demand="
|
||||||
|
|
||||||
|
networks:
|
||||||
|
proxy:
|
||||||
|
external: true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
project:
|
||||||
|
content:
|
||||||
|
public:
|
14
content/_index.md
Normal file
14
content/_index.md
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
title: "Welcome"
|
||||||
|
date: 2022-02-14T16:49:02-05:00
|
||||||
|
draft: false
|
||||||
|
layout: single
|
||||||
|
hideFooter: true
|
||||||
|
hideMeta: true
|
||||||
|
disableAnchoredHeadings: true
|
||||||
|
---
|
||||||
|
|
||||||
|
**Wiki Cafe** is a **[co-op](pages/co-op)** \
|
||||||
|
that provides **[fedwiki hosting](pages/fedwiki_service)** \
|
||||||
|
and **[wiki education](pages/wiki_education)** services.
|
||||||
|
|
8
content/pages/co-op.md
Normal file
8
content/pages/co-op.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "Co-op"
|
||||||
|
date: 2022-02-14T22:03:26-05:00
|
||||||
|
draft: false
|
||||||
|
hideMeta: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.
|
11
content/pages/fedwiki_service.md
Normal file
11
content/pages/fedwiki_service.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
title: "Fedwiki Service"
|
||||||
|
date: 2022-02-14T21:42:36-05:00
|
||||||
|
draft: false
|
||||||
|
hideMeta: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
|
||||||
|
## Access
|
||||||
|
The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail *at* wiki.cafe.
|
@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Welcome"
|
|
||||||
date: 2021-09-11T16:08:39-04:00
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
11
content/pages/wiki_education.md
Normal file
11
content/pages/wiki_education.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
title: "Wiki Education"
|
||||||
|
date: 2022-02-14T22:02:42-05:00
|
||||||
|
draft: false
|
||||||
|
hideMeta: true
|
||||||
|
---
|
||||||
|
|
||||||
|
Wiki is not just software, it's a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
|
||||||
|
## Access
|
||||||
|
The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail *at* wiki.cafe.
|
@ -1,29 +0,0 @@
|
|||||||
version: "3.8"
|
|
||||||
|
|
||||||
services:
|
|
||||||
app:
|
|
||||||
image: europe-west6-docker.pkg.dev/wiki-cafe-0001/docker/apex
|
|
||||||
networks:
|
|
||||||
- proxy
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "curl", "-f", "http://localhost"]
|
|
||||||
interval: 10s
|
|
||||||
timeout: 10s
|
|
||||||
retries: 10
|
|
||||||
start_period: 15s
|
|
||||||
deploy:
|
|
||||||
update_config:
|
|
||||||
failure_action: rollback
|
|
||||||
order: start-first
|
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.http.services.apex_wiki_cafe.loadbalancer.server.port=80"
|
|
||||||
- "traefik.http.routers.apex_wiki_cafe.rule=Host(`wiki.cafe`, `www.wiki.cafe`)"
|
|
||||||
- "traefik.http.routers.apex_wiki_cafe.entrypoints=web-secure"
|
|
||||||
- "traefik.http.routers.apex_wiki_cafe.tls.certresolver=production"
|
|
||||||
# - "traefik.http.routers.apex_wiki_cafe.middlewares=apex_wiki_cafe-redirect"
|
|
||||||
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
|
|
||||||
#- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
|
|
||||||
networks:
|
|
||||||
proxy:
|
|
||||||
external: true
|
|
@ -2,4 +2,3 @@ baseURL: "https://wiki.cafe/"
|
|||||||
languageCode: "en-us"
|
languageCode: "en-us"
|
||||||
title: "Wiki Cafe"
|
title: "Wiki Cafe"
|
||||||
theme: "PaperMod"
|
theme: "PaperMod"
|
||||||
|
|
@ -10,7 +10,7 @@
|
|||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<link rel="canonical" href="https://wiki.cafe/404.html" />
|
<link rel="canonical" href="https://wiki.cafe/404.html" />
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.9f1d947375927e9847272b1f4e9be81336f539e513bf04d52cade31f81cad1af.css" integrity="sha256-nx2Uc3WSfphHJysfTpvoEzb1OeUTvwTVLK3jH4HK0a8=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<meta name="generator" content="Hugo 0.86.0" />
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
#theme-toggle,
|
#theme-toggle,
|
||||||
@ -114,7 +114,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2021 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -10,7 +10,7 @@
|
|||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<link rel="canonical" href="https://wiki.cafe/categories/" />
|
<link rel="canonical" href="https://wiki.cafe/categories/" />
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.9f1d947375927e9847272b1f4e9be81336f539e513bf04d52cade31f81cad1af.css" integrity="sha256-nx2Uc3WSfphHJysfTpvoEzb1OeUTvwTVLK3jH4HK0a8=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<meta name="generator" content="Hugo 0.86.0" />
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/categories/index.xml">
|
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/categories/index.xml">
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
@ -120,7 +120,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2021 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<link rel="canonical" href="https://wiki.cafe/" />
|
<link rel="canonical" href="https://wiki.cafe/" />
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.9f1d947375927e9847272b1f4e9be81336f539e513bf04d52cade31f81cad1af.css" integrity="sha256-nx2Uc3WSfphHJysfTpvoEzb1OeUTvwTVLK3jH4HK0a8=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<meta name="generator" content="Hugo 0.86.0" />
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/index.xml">
|
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/index.xml">
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
@ -56,13 +56,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</noscript><meta property="og:title" content="Wiki Cafe" />
|
</noscript><meta property="og:title" content="Welcome" />
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:description" content="" />
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://wiki.cafe/" />
|
<meta property="og:url" content="https://wiki.cafe/" />
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
<meta name="twitter:card" content="summary"/>
|
||||||
<meta name="twitter:title" content="Wiki Cafe"/>
|
<meta name="twitter:title" content="Welcome"/>
|
||||||
<meta name="twitter:description" content=""/>
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
<script type="application/ld+json">
|
<script type="application/ld+json">
|
||||||
@ -125,27 +125,24 @@
|
|||||||
</header>
|
</header>
|
||||||
<main class="main">
|
<main class="main">
|
||||||
|
|
||||||
<article class="first-entry">
|
<article class="post-single">
|
||||||
<header class="entry-header">
|
<header class="post-header">
|
||||||
<h2>Welcome
|
|
||||||
</h2>
|
<h1 class="post-title">
|
||||||
|
Welcome
|
||||||
|
</h1>
|
||||||
</header>
|
</header>
|
||||||
<section class="entry-content">
|
<div class="post-content"><p><strong>Wiki Cafe</strong> is a <strong><a href="pages/co-op">co-op</a></strong><br>
|
||||||
<p></p>
|
that provides <strong><a href="pages/fedwiki_service">fedwiki hosting</a></strong><br>
|
||||||
</section>
|
and <strong><a href="pages/wiki_education">wiki education</a></strong> services.</p>
|
||||||
<footer class="entry-footer">September 11, 2021</footer>
|
|
||||||
<a class="entry-link" aria-label="post link to Welcome" href="https://wiki.cafe/pages/welcome/"></a>
|
</div>
|
||||||
|
|
||||||
|
<footer class="post-footer">
|
||||||
|
</footer>
|
||||||
</article>
|
</article>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
|
||||||
<span>© 2021 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
|
||||||
<span>
|
|
||||||
Powered by
|
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
|
||||||
<a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
||||||
<path d="M12 6H0l6-6z" />
|
<path d="M12 6H0l6-6z" />
|
||||||
|
@ -1,19 +1,39 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Wiki Cafe</title>
|
<title>Welcome on Wiki Cafe</title>
|
||||||
<link>https://wiki.cafe/</link>
|
<link>https://wiki.cafe/</link>
|
||||||
<description>Recent content on Wiki Cafe</description>
|
<description>Recent content in Welcome on Wiki Cafe</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 11 Sep 2021 16:08:39 -0400</lastBuildDate><atom:link href="https://wiki.cafe/index.xml" rel="self" type="application/rss+xml" />
|
<lastBuildDate>Mon, 14 Feb 2022 16:49:02 -0500</lastBuildDate><atom:link href="https://wiki.cafe/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>Welcome</title>
|
<title>Co-op</title>
|
||||||
<link>https://wiki.cafe/pages/welcome/</link>
|
<link>https://wiki.cafe/pages/co-op/</link>
|
||||||
<pubDate>Sat, 11 Sep 2021 16:08:39 -0400</pubDate>
|
<pubDate>Mon, 14 Feb 2022 22:03:26 -0500</pubDate>
|
||||||
|
|
||||||
<guid>https://wiki.cafe/pages/welcome/</guid>
|
<guid>https://wiki.cafe/pages/co-op/</guid>
|
||||||
<description></description>
|
<description>Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Wiki Education</title>
|
||||||
|
<link>https://wiki.cafe/pages/wiki_education/</link>
|
||||||
|
<pubDate>Mon, 14 Feb 2022 22:02:42 -0500</pubDate>
|
||||||
|
|
||||||
|
<guid>https://wiki.cafe/pages/wiki_education/</guid>
|
||||||
|
<description>Wiki is not just software, it&rsquo;s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
Access The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Fedwiki Service</title>
|
||||||
|
<link>https://wiki.cafe/pages/fedwiki_service/</link>
|
||||||
|
<pubDate>Mon, 14 Feb 2022 21:42:36 -0500</pubDate>
|
||||||
|
|
||||||
|
<guid>https://wiki.cafe/pages/fedwiki_service/</guid>
|
||||||
|
<description>Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
Access The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
|
253
public/pages/co-op/index.html
Normal file
253
public/pages/co-op/index.html
Normal file
@ -0,0 +1,253 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
|
<head><meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<title>Co-op | Wiki Cafe</title>
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="description" content="Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.">
|
||||||
|
<meta name="author" content="">
|
||||||
|
<link rel="canonical" href="https://wiki.cafe/pages/co-op/" />
|
||||||
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
|
<script defer crossorigin="anonymous" src="/assets/js/highlight.min.27cd435cc9ed6abb4b496581b151804f79f366c412620272bb94e2f5f598ebcc.js" integrity="sha256-J81DXMntartLSWWBsVGAT3nzZsQSYgJyu5Ti9fWY68w="
|
||||||
|
onload="hljs.initHighlightingOnLoad();"></script>
|
||||||
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
|
<link rel="apple-touch-icon" href="https://wiki.cafe/apple-touch-icon.png">
|
||||||
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
|
<meta name="theme-color" content="#2e2e33">
|
||||||
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
|
<noscript>
|
||||||
|
<style>
|
||||||
|
#theme-toggle,
|
||||||
|
.top-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--theme: #1d1e20;
|
||||||
|
--entry: #2e2e33;
|
||||||
|
--primary: rgba(255, 255, 255, 0.84);
|
||||||
|
--secondary: rgba(255, 255, 255, 0.56);
|
||||||
|
--tertiary: rgba(255, 255, 255, 0.16);
|
||||||
|
--content: rgba(255, 255, 255, 0.74);
|
||||||
|
--hljs-bg: #2e2e33;
|
||||||
|
--code-bg: #37383e;
|
||||||
|
--border: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
background: var(--theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
.list:not(.dark)::-webkit-scrollbar-track {
|
||||||
|
background: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list:not(.dark)::-webkit-scrollbar-thumb {
|
||||||
|
border-color: var(--theme);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</noscript><meta property="og:title" content="Co-op" />
|
||||||
|
<meta property="og:description" content="Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating." />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="https://wiki.cafe/pages/co-op/" /><meta property="article:section" content="pages" />
|
||||||
|
<meta property="article:published_time" content="2022-02-14T22:03:26-05:00" />
|
||||||
|
<meta property="article:modified_time" content="2022-02-14T22:03:26-05:00" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Co-op"/>
|
||||||
|
<meta name="twitter:description" content="Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating."/>
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BreadcrumbList",
|
||||||
|
"itemListElement": [
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 1 ,
|
||||||
|
"name": "Pages",
|
||||||
|
"item": "https://wiki.cafe/pages/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 2 ,
|
||||||
|
"name": "Co-op",
|
||||||
|
"item": "https://wiki.cafe/pages/co-op/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BlogPosting",
|
||||||
|
"headline": "Co-op",
|
||||||
|
"name": "Co-op",
|
||||||
|
"description": "Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.",
|
||||||
|
"keywords": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"articleBody": "Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.\n",
|
||||||
|
"wordCount" : "29",
|
||||||
|
"inLanguage": "en",
|
||||||
|
"datePublished": "2022-02-14T22:03:26-05:00",
|
||||||
|
"dateModified": "2022-02-14T22:03:26-05:00",
|
||||||
|
"mainEntityOfPage": {
|
||||||
|
"@type": "WebPage",
|
||||||
|
"@id": "https://wiki.cafe/pages/co-op/"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Wiki Cafe",
|
||||||
|
"logo": {
|
||||||
|
"@type": "ImageObject",
|
||||||
|
"url": "https://wiki.cafe/favicon.ico"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="" id="top">
|
||||||
|
<script>
|
||||||
|
if (localStorage.getItem("pref-theme") === "dark") {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
} else if (localStorage.getItem("pref-theme") === "light") {
|
||||||
|
document.body.classList.remove('dark')
|
||||||
|
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
<nav class="nav">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="https://wiki.cafe/" accesskey="h" title="Wiki Cafe (Alt + H)">Wiki Cafe</a>
|
||||||
|
<span class="logo-switches">
|
||||||
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
|
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||||
|
</svg>
|
||||||
|
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<circle cx="12" cy="12" r="5"></circle>
|
||||||
|
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||||
|
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||||
|
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||||
|
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||||
|
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||||
|
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||||
|
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||||
|
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<ul id="menu">
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-single">
|
||||||
|
<header class="post-header">
|
||||||
|
|
||||||
|
<h1 class="post-title">
|
||||||
|
Co-op
|
||||||
|
</h1>
|
||||||
|
</header>
|
||||||
|
<div class="post-content"><p>Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer class="post-footer">
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
|
<span>
|
||||||
|
Powered by
|
||||||
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
<a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a>
|
||||||
|
</span>
|
||||||
|
</footer>
|
||||||
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
||||||
|
<path d="M12 6H0l6-6z" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
let menu = document.getElementById('menu')
|
||||||
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
||||||
|
menu.onscroll = function () {
|
||||||
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||||
|
anchor.addEventListener("click", function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var id = this.getAttribute("href").substr(1);
|
||||||
|
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||||
|
behavior: "smooth"
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||||
|
}
|
||||||
|
if (id === "top") {
|
||||||
|
history.replaceState(null, null, " ");
|
||||||
|
} else {
|
||||||
|
history.pushState(null, null, `#${id}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
var mybutton = document.getElementById("top-link");
|
||||||
|
window.onscroll = function () {
|
||||||
|
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
|
||||||
|
mybutton.style.visibility = "visible";
|
||||||
|
mybutton.style.opacity = "1";
|
||||||
|
} else {
|
||||||
|
mybutton.style.visibility = "hidden";
|
||||||
|
mybutton.style.opacity = "0";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||||
|
if (document.body.className.includes("dark")) {
|
||||||
|
document.body.classList.remove('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'light');
|
||||||
|
} else {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'dark');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
258
public/pages/fedwiki_service/index.html
Normal file
258
public/pages/fedwiki_service/index.html
Normal file
@ -0,0 +1,258 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
|
<head><meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<title>Fedwiki Service | Wiki Cafe</title>
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="description" content="Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
Access The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe.">
|
||||||
|
<meta name="author" content="">
|
||||||
|
<link rel="canonical" href="https://wiki.cafe/pages/fedwiki_service/" />
|
||||||
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
|
<script defer crossorigin="anonymous" src="/assets/js/highlight.min.27cd435cc9ed6abb4b496581b151804f79f366c412620272bb94e2f5f598ebcc.js" integrity="sha256-J81DXMntartLSWWBsVGAT3nzZsQSYgJyu5Ti9fWY68w="
|
||||||
|
onload="hljs.initHighlightingOnLoad();"></script>
|
||||||
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
|
<link rel="apple-touch-icon" href="https://wiki.cafe/apple-touch-icon.png">
|
||||||
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
|
<meta name="theme-color" content="#2e2e33">
|
||||||
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
|
<noscript>
|
||||||
|
<style>
|
||||||
|
#theme-toggle,
|
||||||
|
.top-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--theme: #1d1e20;
|
||||||
|
--entry: #2e2e33;
|
||||||
|
--primary: rgba(255, 255, 255, 0.84);
|
||||||
|
--secondary: rgba(255, 255, 255, 0.56);
|
||||||
|
--tertiary: rgba(255, 255, 255, 0.16);
|
||||||
|
--content: rgba(255, 255, 255, 0.74);
|
||||||
|
--hljs-bg: #2e2e33;
|
||||||
|
--code-bg: #37383e;
|
||||||
|
--border: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
background: var(--theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
.list:not(.dark)::-webkit-scrollbar-track {
|
||||||
|
background: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list:not(.dark)::-webkit-scrollbar-thumb {
|
||||||
|
border-color: var(--theme);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</noscript><meta property="og:title" content="Fedwiki Service" />
|
||||||
|
<meta property="og:description" content="Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
Access The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe." />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="https://wiki.cafe/pages/fedwiki_service/" /><meta property="article:section" content="pages" />
|
||||||
|
<meta property="article:published_time" content="2022-02-14T21:42:36-05:00" />
|
||||||
|
<meta property="article:modified_time" content="2022-02-14T21:42:36-05:00" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Fedwiki Service"/>
|
||||||
|
<meta name="twitter:description" content="Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
Access The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe."/>
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BreadcrumbList",
|
||||||
|
"itemListElement": [
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 1 ,
|
||||||
|
"name": "Pages",
|
||||||
|
"item": "https://wiki.cafe/pages/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 2 ,
|
||||||
|
"name": "Fedwiki Service",
|
||||||
|
"item": "https://wiki.cafe/pages/fedwiki_service/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BlogPosting",
|
||||||
|
"headline": "Fedwiki Service",
|
||||||
|
"name": "Fedwiki Service",
|
||||||
|
"description": "Explore new ways of creating and sharing with managed Federated Wiki hosting.\nAccess The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe.",
|
||||||
|
"keywords": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"articleBody": "Explore new ways of creating and sharing with managed Federated Wiki hosting.\nAccess The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe.\n",
|
||||||
|
"wordCount" : "42",
|
||||||
|
"inLanguage": "en",
|
||||||
|
"datePublished": "2022-02-14T21:42:36-05:00",
|
||||||
|
"dateModified": "2022-02-14T21:42:36-05:00",
|
||||||
|
"mainEntityOfPage": {
|
||||||
|
"@type": "WebPage",
|
||||||
|
"@id": "https://wiki.cafe/pages/fedwiki_service/"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Wiki Cafe",
|
||||||
|
"logo": {
|
||||||
|
"@type": "ImageObject",
|
||||||
|
"url": "https://wiki.cafe/favicon.ico"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="" id="top">
|
||||||
|
<script>
|
||||||
|
if (localStorage.getItem("pref-theme") === "dark") {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
} else if (localStorage.getItem("pref-theme") === "light") {
|
||||||
|
document.body.classList.remove('dark')
|
||||||
|
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
<nav class="nav">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="https://wiki.cafe/" accesskey="h" title="Wiki Cafe (Alt + H)">Wiki Cafe</a>
|
||||||
|
<span class="logo-switches">
|
||||||
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
|
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||||
|
</svg>
|
||||||
|
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<circle cx="12" cy="12" r="5"></circle>
|
||||||
|
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||||
|
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||||
|
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||||
|
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||||
|
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||||
|
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||||
|
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||||
|
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<ul id="menu">
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-single">
|
||||||
|
<header class="post-header">
|
||||||
|
|
||||||
|
<h1 class="post-title">
|
||||||
|
Fedwiki Service
|
||||||
|
</h1>
|
||||||
|
</header>
|
||||||
|
<div class="post-content"><p>Explore new ways of creating and sharing with managed Federated Wiki hosting.</p>
|
||||||
|
<h2 id="access">Access<a hidden class="anchor" aria-hidden="true" href="#access">#</a></h2>
|
||||||
|
<p>The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail <em>at</em> wiki.cafe.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer class="post-footer">
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
|
<span>
|
||||||
|
Powered by
|
||||||
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
<a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a>
|
||||||
|
</span>
|
||||||
|
</footer>
|
||||||
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
||||||
|
<path d="M12 6H0l6-6z" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
let menu = document.getElementById('menu')
|
||||||
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
||||||
|
menu.onscroll = function () {
|
||||||
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||||
|
anchor.addEventListener("click", function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var id = this.getAttribute("href").substr(1);
|
||||||
|
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||||
|
behavior: "smooth"
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||||
|
}
|
||||||
|
if (id === "top") {
|
||||||
|
history.replaceState(null, null, " ");
|
||||||
|
} else {
|
||||||
|
history.pushState(null, null, `#${id}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
var mybutton = document.getElementById("top-link");
|
||||||
|
window.onscroll = function () {
|
||||||
|
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
|
||||||
|
mybutton.style.visibility = "visible";
|
||||||
|
mybutton.style.opacity = "1";
|
||||||
|
} else {
|
||||||
|
mybutton.style.visibility = "hidden";
|
||||||
|
mybutton.style.opacity = "0";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||||
|
if (document.body.className.includes("dark")) {
|
||||||
|
document.body.classList.remove('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'light');
|
||||||
|
} else {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'dark');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -10,7 +10,7 @@
|
|||||||
<meta name="description" content="Pages - Wiki Cafe">
|
<meta name="description" content="Pages - Wiki Cafe">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<link rel="canonical" href="https://wiki.cafe/pages/" />
|
<link rel="canonical" href="https://wiki.cafe/pages/" />
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.9f1d947375927e9847272b1f4e9be81336f539e513bf04d52cade31f81cad1af.css" integrity="sha256-nx2Uc3WSfphHJysfTpvoEzb1OeUTvwTVLK3jH4HK0a8=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<meta name="generator" content="Hugo 0.86.0" />
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/pages/index.xml">
|
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/pages/index.xml">
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
@ -132,19 +132,42 @@
|
|||||||
|
|
||||||
<article class="post-entry">
|
<article class="post-entry">
|
||||||
<header class="entry-header">
|
<header class="entry-header">
|
||||||
<h2>Welcome
|
<h2>Co-op
|
||||||
</h2>
|
</h2>
|
||||||
</header>
|
</header>
|
||||||
<section class="entry-content">
|
<section class="entry-content">
|
||||||
<p></p>
|
<p>Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.</p>
|
||||||
</section>
|
</section>
|
||||||
<footer class="entry-footer">September 11, 2021</footer>
|
<a class="entry-link" aria-label="post link to Co-op" href="https://wiki.cafe/pages/co-op/"></a>
|
||||||
<a class="entry-link" aria-label="post link to Welcome" href="https://wiki.cafe/pages/welcome/"></a>
|
</article>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2>Wiki Education
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<section class="entry-content">
|
||||||
|
<p>Wiki is not just software, it’s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
Access The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe.</p>
|
||||||
|
</section>
|
||||||
|
<a class="entry-link" aria-label="post link to Wiki Education" href="https://wiki.cafe/pages/wiki_education/"></a>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<article class="post-entry">
|
||||||
|
<header class="entry-header">
|
||||||
|
<h2>Fedwiki Service
|
||||||
|
</h2>
|
||||||
|
</header>
|
||||||
|
<section class="entry-content">
|
||||||
|
<p>Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
Access The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe.</p>
|
||||||
|
</section>
|
||||||
|
<a class="entry-link" aria-label="post link to Fedwiki Service" href="https://wiki.cafe/pages/fedwiki_service/"></a>
|
||||||
</article>
|
</article>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2021 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
@ -6,14 +6,34 @@
|
|||||||
<description>Recent content in Pages on Wiki Cafe</description>
|
<description>Recent content in Pages on Wiki Cafe</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-us</language>
|
<language>en-us</language>
|
||||||
<lastBuildDate>Sat, 11 Sep 2021 16:08:39 -0400</lastBuildDate><atom:link href="https://wiki.cafe/pages/index.xml" rel="self" type="application/rss+xml" />
|
<lastBuildDate>Mon, 14 Feb 2022 22:03:26 -0500</lastBuildDate><atom:link href="https://wiki.cafe/pages/index.xml" rel="self" type="application/rss+xml" />
|
||||||
<item>
|
<item>
|
||||||
<title>Welcome</title>
|
<title>Co-op</title>
|
||||||
<link>https://wiki.cafe/pages/welcome/</link>
|
<link>https://wiki.cafe/pages/co-op/</link>
|
||||||
<pubDate>Sat, 11 Sep 2021 16:08:39 -0400</pubDate>
|
<pubDate>Mon, 14 Feb 2022 22:03:26 -0500</pubDate>
|
||||||
|
|
||||||
<guid>https://wiki.cafe/pages/welcome/</guid>
|
<guid>https://wiki.cafe/pages/co-op/</guid>
|
||||||
<description></description>
|
<description>Wiki Cafe is a co-operative in its early stages of formation. We value multistakeholder governance and cooperative principles in our goal to enable new ways of sharing and creating.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Wiki Education</title>
|
||||||
|
<link>https://wiki.cafe/pages/wiki_education/</link>
|
||||||
|
<pubDate>Mon, 14 Feb 2022 22:02:42 -0500</pubDate>
|
||||||
|
|
||||||
|
<guid>https://wiki.cafe/pages/wiki_education/</guid>
|
||||||
|
<description>Wiki is not just software, it&rsquo;s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
Access The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Fedwiki Service</title>
|
||||||
|
<link>https://wiki.cafe/pages/fedwiki_service/</link>
|
||||||
|
<pubDate>Mon, 14 Feb 2022 21:42:36 -0500</pubDate>
|
||||||
|
|
||||||
|
<guid>https://wiki.cafe/pages/fedwiki_service/</guid>
|
||||||
|
<description>Explore new ways of creating and sharing with managed Federated Wiki hosting.
|
||||||
|
Access The Fedwiki Service is currently under development. If you are interested in participating in the development or testing of the Fedwiki service, send an email to mail at wiki.cafe.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
<meta name="description" content="Welcome - Wiki Cafe">
|
<meta name="description" content="Welcome - Wiki Cafe">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<link rel="canonical" href="https://wiki.cafe/pages/welcome/" />
|
<link rel="canonical" href="https://wiki.cafe/pages/welcome/" />
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.9f1d947375927e9847272b1f4e9be81336f539e513bf04d52cade31f81cad1af.css" integrity="sha256-nx2Uc3WSfphHJysfTpvoEzb1OeUTvwTVLK3jH4HK0a8=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
<script defer crossorigin="anonymous" src="/assets/js/highlight.min.7680afc38aa6b15ddf158a4f3780b7b1f7dde7e91d26f073e6229bb7a0793c92.js" integrity="sha256-doCvw4qmsV3fFYpPN4C3sffd5+kdJvBz5iKbt6B5PJI="
|
<script defer crossorigin="anonymous" src="/assets/js/highlight.min.27cd435cc9ed6abb4b496581b151804f79f366c412620272bb94e2f5f598ebcc.js" integrity="sha256-J81DXMntartLSWWBsVGAT3nzZsQSYgJyu5Ti9fWY68w="
|
||||||
onload="hljs.initHighlightingOnLoad();"></script>
|
onload="hljs.initHighlightingOnLoad();"></script>
|
||||||
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
@ -20,7 +20,7 @@
|
|||||||
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<meta name="generator" content="Hugo 0.86.0" />
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
#theme-toggle,
|
#theme-toggle,
|
||||||
@ -181,7 +181,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2021 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
258
public/pages/wiki_education/index.html
Normal file
258
public/pages/wiki_education/index.html
Normal file
@ -0,0 +1,258 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" dir="auto">
|
||||||
|
|
||||||
|
<head><meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<title>Wiki Education | Wiki Cafe</title>
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
<meta name="description" content="Wiki is not just software, it’s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
Access The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe.">
|
||||||
|
<meta name="author" content="">
|
||||||
|
<link rel="canonical" href="https://wiki.cafe/pages/wiki_education/" />
|
||||||
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
|
<script defer crossorigin="anonymous" src="/assets/js/highlight.min.27cd435cc9ed6abb4b496581b151804f79f366c412620272bb94e2f5f598ebcc.js" integrity="sha256-J81DXMntartLSWWBsVGAT3nzZsQSYgJyu5Ti9fWY68w="
|
||||||
|
onload="hljs.initHighlightingOnLoad();"></script>
|
||||||
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
|
<link rel="apple-touch-icon" href="https://wiki.cafe/apple-touch-icon.png">
|
||||||
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
|
<meta name="theme-color" content="#2e2e33">
|
||||||
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
|
<noscript>
|
||||||
|
<style>
|
||||||
|
#theme-toggle,
|
||||||
|
.top-link {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
:root {
|
||||||
|
--theme: #1d1e20;
|
||||||
|
--entry: #2e2e33;
|
||||||
|
--primary: rgba(255, 255, 255, 0.84);
|
||||||
|
--secondary: rgba(255, 255, 255, 0.56);
|
||||||
|
--tertiary: rgba(255, 255, 255, 0.16);
|
||||||
|
--content: rgba(255, 255, 255, 0.74);
|
||||||
|
--hljs-bg: #2e2e33;
|
||||||
|
--code-bg: #37383e;
|
||||||
|
--border: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
background: var(--theme);
|
||||||
|
}
|
||||||
|
|
||||||
|
.list:not(.dark)::-webkit-scrollbar-track {
|
||||||
|
background: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list:not(.dark)::-webkit-scrollbar-thumb {
|
||||||
|
border-color: var(--theme);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</noscript><meta property="og:title" content="Wiki Education" />
|
||||||
|
<meta property="og:description" content="Wiki is not just software, it’s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
Access The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe." />
|
||||||
|
<meta property="og:type" content="article" />
|
||||||
|
<meta property="og:url" content="https://wiki.cafe/pages/wiki_education/" /><meta property="article:section" content="pages" />
|
||||||
|
<meta property="article:published_time" content="2022-02-14T22:02:42-05:00" />
|
||||||
|
<meta property="article:modified_time" content="2022-02-14T22:02:42-05:00" />
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Wiki Education"/>
|
||||||
|
<meta name="twitter:description" content="Wiki is not just software, it’s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.
|
||||||
|
Access The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe."/>
|
||||||
|
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BreadcrumbList",
|
||||||
|
"itemListElement": [
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 1 ,
|
||||||
|
"name": "Pages",
|
||||||
|
"item": "https://wiki.cafe/pages/"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "ListItem",
|
||||||
|
"position": 2 ,
|
||||||
|
"name": "Wiki Education",
|
||||||
|
"item": "https://wiki.cafe/pages/wiki_education/"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "BlogPosting",
|
||||||
|
"headline": "Wiki Education",
|
||||||
|
"name": "Wiki Education",
|
||||||
|
"description": "Wiki is not just software, it\u0026rsquo;s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.\nAccess The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe.",
|
||||||
|
"keywords": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"articleBody": "Wiki is not just software, it’s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.\nAccess The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail at wiki.cafe.\n",
|
||||||
|
"wordCount" : "55",
|
||||||
|
"inLanguage": "en",
|
||||||
|
"datePublished": "2022-02-14T22:02:42-05:00",
|
||||||
|
"dateModified": "2022-02-14T22:02:42-05:00",
|
||||||
|
"mainEntityOfPage": {
|
||||||
|
"@type": "WebPage",
|
||||||
|
"@id": "https://wiki.cafe/pages/wiki_education/"
|
||||||
|
},
|
||||||
|
"publisher": {
|
||||||
|
"@type": "Organization",
|
||||||
|
"name": "Wiki Cafe",
|
||||||
|
"logo": {
|
||||||
|
"@type": "ImageObject",
|
||||||
|
"url": "https://wiki.cafe/favicon.ico"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="" id="top">
|
||||||
|
<script>
|
||||||
|
if (localStorage.getItem("pref-theme") === "dark") {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
} else if (localStorage.getItem("pref-theme") === "light") {
|
||||||
|
document.body.classList.remove('dark')
|
||||||
|
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<header class="header">
|
||||||
|
<nav class="nav">
|
||||||
|
<div class="logo">
|
||||||
|
<a href="https://wiki.cafe/" accesskey="h" title="Wiki Cafe (Alt + H)">Wiki Cafe</a>
|
||||||
|
<span class="logo-switches">
|
||||||
|
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
|
||||||
|
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
|
||||||
|
</svg>
|
||||||
|
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||||
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||||
|
stroke-linejoin="round">
|
||||||
|
<circle cx="12" cy="12" r="5"></circle>
|
||||||
|
<line x1="12" y1="1" x2="12" y2="3"></line>
|
||||||
|
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||||
|
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
|
||||||
|
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
|
||||||
|
<line x1="1" y1="12" x2="3" y2="12"></line>
|
||||||
|
<line x1="21" y1="12" x2="23" y2="12"></line>
|
||||||
|
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
|
||||||
|
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<ul id="menu">
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main class="main">
|
||||||
|
|
||||||
|
<article class="post-single">
|
||||||
|
<header class="post-header">
|
||||||
|
|
||||||
|
<h1 class="post-title">
|
||||||
|
Wiki Education
|
||||||
|
</h1>
|
||||||
|
</header>
|
||||||
|
<div class="post-content"><p>Wiki is not just software, it’s a way of thinking about thinking. We hope to share the knowledge of the wiki community through our Wiki Education resources.</p>
|
||||||
|
<h2 id="access">Access<a hidden class="anchor" aria-hidden="true" href="#access">#</a></h2>
|
||||||
|
<p>The Wiki Education resources are currently under development. If you are interested in participating in the development of these resources, send an email to mail <em>at</em> wiki.cafe.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<footer class="post-footer">
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="footer">
|
||||||
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
|
<span>
|
||||||
|
Powered by
|
||||||
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
<a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a>
|
||||||
|
</span>
|
||||||
|
</footer>
|
||||||
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
||||||
|
<path d="M12 6H0l6-6z" />
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
let menu = document.getElementById('menu')
|
||||||
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
||||||
|
menu.onscroll = function () {
|
||||||
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
||||||
|
}
|
||||||
|
|
||||||
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||||
|
anchor.addEventListener("click", function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
var id = this.getAttribute("href").substr(1);
|
||||||
|
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
||||||
|
behavior: "smooth"
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
||||||
|
}
|
||||||
|
if (id === "top") {
|
||||||
|
history.replaceState(null, null, " ");
|
||||||
|
} else {
|
||||||
|
history.pushState(null, null, `#${id}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
var mybutton = document.getElementById("top-link");
|
||||||
|
window.onscroll = function () {
|
||||||
|
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
|
||||||
|
mybutton.style.visibility = "visible";
|
||||||
|
mybutton.style.opacity = "1";
|
||||||
|
} else {
|
||||||
|
mybutton.style.visibility = "hidden";
|
||||||
|
mybutton.style.opacity = "0";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||||
|
if (document.body.className.includes("dark")) {
|
||||||
|
document.body.classList.remove('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'light');
|
||||||
|
} else {
|
||||||
|
document.body.classList.add('dark');
|
||||||
|
localStorage.setItem("pref-theme", 'dark');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -1,18 +1,38 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://wiki.cafe/pages/co-op/</loc>
|
||||||
|
<lastmod>2022-02-14T22:03:26-05:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<loc>https://wiki.cafe/pages/</loc>
|
<loc>https://wiki.cafe/pages/</loc>
|
||||||
<lastmod>2021-09-11T16:08:39-04:00</lastmod>
|
<lastmod>2022-02-14T22:03:26-05:00</lastmod>
|
||||||
</url><url>
|
</url>
|
||||||
<loc>https://wiki.cafe/pages/welcome/</loc>
|
|
||||||
<lastmod>2021-09-11T16:08:39-04:00</lastmod>
|
<url>
|
||||||
</url><url>
|
<loc>https://wiki.cafe/pages/wiki_education/</loc>
|
||||||
|
<lastmod>2022-02-14T22:02:42-05:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://wiki.cafe/pages/fedwiki_service/</loc>
|
||||||
|
<lastmod>2022-02-14T21:42:36-05:00</lastmod>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
<loc>https://wiki.cafe/</loc>
|
<loc>https://wiki.cafe/</loc>
|
||||||
<lastmod>2021-09-11T16:08:39-04:00</lastmod>
|
<lastmod>2022-02-14T16:49:02-05:00</lastmod>
|
||||||
</url><url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
<loc>https://wiki.cafe/categories/</loc>
|
<loc>https://wiki.cafe/categories/</loc>
|
||||||
</url><url>
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
<loc>https://wiki.cafe/tags/</loc>
|
<loc>https://wiki.cafe/tags/</loc>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
</urlset>
|
</urlset>
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<meta name="description" content="">
|
<meta name="description" content="">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<link rel="canonical" href="https://wiki.cafe/tags/" />
|
<link rel="canonical" href="https://wiki.cafe/tags/" />
|
||||||
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.9f1d947375927e9847272b1f4e9be81336f539e513bf04d52cade31f81cad1af.css" integrity="sha256-nx2Uc3WSfphHJysfTpvoEzb1OeUTvwTVLK3jH4HK0a8=" rel="preload stylesheet" as="style">
|
<link crossorigin="anonymous" href="/assets/css/stylesheet.min.75cded8a36cd4ccf26d25de0a4001ff6d85d17693e9ee431744de71f351e8d79.css" integrity="sha256-dc3tijbNTM8m0l3gpAAf9thdF2k+nuQxdE3nHzUejXk=" rel="preload stylesheet" as="style">
|
||||||
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
<link rel="icon" href="https://wiki.cafe/favicon.ico">
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="https://wiki.cafe/favicon-16x16.png">
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
<link rel="icon" type="image/png" sizes="32x32" href="https://wiki.cafe/favicon-32x32.png">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
<link rel="mask-icon" href="https://wiki.cafe/safari-pinned-tab.svg">
|
||||||
<meta name="theme-color" content="#2e2e33">
|
<meta name="theme-color" content="#2e2e33">
|
||||||
<meta name="msapplication-TileColor" content="#2e2e33">
|
<meta name="msapplication-TileColor" content="#2e2e33">
|
||||||
<meta name="generator" content="Hugo 0.86.0" />
|
<meta name="generator" content="Hugo 0.80.0" />
|
||||||
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/tags/index.xml">
|
<link rel="alternate" type="application/rss+xml" href="https://wiki.cafe/tags/index.xml">
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>
|
<style>
|
||||||
@ -120,7 +120,7 @@
|
|||||||
</main>
|
</main>
|
||||||
|
|
||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<span>© 2021 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
<span>© 2022 <a href="https://wiki.cafe/">Wiki Cafe</a></span>
|
||||||
<span>
|
<span>
|
||||||
Powered by
|
Powered by
|
||||||
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
||||||
|
Loading…
x
Reference in New Issue
Block a user