1
0
Fork 0
forked from ilot/ilot-io

Initial commit

This commit is contained in:
Antoine Martin 2024-06-14 14:22:59 -04:00
commit aac2060c2e
Signed by: ayakael
GPG key ID: D62A472A4AA7D541
31 changed files with 1113 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
content/.ikiwiki
public/

25
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,25 @@
before_script:
- sudo apk add git ikiwiki
- git submodule init
- git submodule update
test:
stage: test
script:
- ikiwiki --setup ikiwiki.setup
rules:
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
tags:
- knit
pages:
stage: deploy
script:
- ikiwiki --setup ikiwiki.setup
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
tags:
- knit

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "themes/ikiwiki-bootstrap-ilot"]
path = themes/ikiwiki-bootstrap-ilot
url = https://lab.ilot.io/ilot/ikiwiki-bootstrap-ilot

21
LICENSE Normal file
View file

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2016 pages
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

99
README.md Normal file
View file

@ -0,0 +1,99 @@
![Build Status](https://gitlab.com/pages/ikiwiki/badges/master/build.svg)
---
Example [ikiwiki] website using GitLab Pages.
Learn more about GitLab Pages at https://pages.gitlab.io and the official
documentation https://docs.gitlab.com/ce/user/project/pages/.
---
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents** *generated with [DocToc](https://github.com/thlorenz/doctoc)*
- [GitLab CI](#gitlab-ci)
- [Building locally](#building-locally)
- [GitLab User or Group Pages](#gitlab-user-or-group-pages)
- [Did you fork this project?](#did-you-fork-this-project)
- [Troubleshooting](#troubleshooting)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
## GitLab CI
This project's static Pages are built by [GitLab CI][ci], following the steps
defined in [`.gitlab-ci.yml`](.gitlab-ci.yml):
```yaml
image: elecnix/ikiwiki
before_script:
- apt-get install -y git
- git submodule init
- git submodule update
test:
stage: test
script:
- ikiwiki --setup ikiwiki.setup --libdir themes/ikistrap/lib
only:
- branches
- tags
pages:
stage: deploy
script:
- ikiwiki --setup ikiwiki.setup --libdir themes/ikistrap/lib
artifacts:
paths:
- public
only:
- master
```
We are using a theme based on Bootstrap 4 using submodules, and in order to
enable the theme plugin, we must pass the `libdir` parameter.
## Building locally
To work locally with this project, you'll have to follow the steps below:
1. Fork, clone or download this project
1. [Install][] ikiwiki
1. Clone the submodules: `git submodule init && git submodule update`
1. Generate the website: `ikiwiki --setup .ikiwiki/ikiwiki.setup --libdir themes/ikistrap/lib`
1. Preview your project: open `public/index.html` in a browser
Read more at ikiwiki's [documentation][].
## GitLab User or Group Pages
To use this project as your user/group website, you will need one additional
step: just rename your project to `namespace.gitlab.io`, where `namespace` is
your `username` or `groupname`. This can be done by navigating to your
project's **Settings**.
Read more about [user/group Pages][userpages] and [project Pages][projpages].
## Did you fork this project?
If you forked this project for your own use, please go to your project's
**Settings** and remove the forking relationship, which won't be necessary
unless you want to contribute back to the upstream project.
## Troubleshooting
1. CSS is missing! That means two things:
Either that you have wrongly set up the CSS URL in your templates, or
your static generator has a configuration option that needs to be explicitly
set in order to serve static assets under a relative URL.
[ci]: https://about.gitlab.com/gitlab-ci/
[ikiwiki]: https://ikiwiki.info/
[install]: https://ikiwiki.info/install/
[documentation]: https://ikiwiki.info/
[userpages]: https://docs.gitlab.com/ce/user/project/pages/introduction.html#user-or-group-pages
[projpages]: https://docs.gitlab.com/ce/user/project/pages/introduction.html#project-pages

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
content/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 696 B

BIN
content/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
content/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
content/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

23
content/index.mdwn Normal file
View file

@ -0,0 +1,23 @@
[[!meta title="ilot.io - index"]]
<!-- do not count headings on frontpage -->
<span /><div class="nocount">
<header class="text-center">
<img src="images/ilot_black_256x256.png" />
<h1>WELCOME</h1>
<hr>
</header>
[ilot](https://ilot.io) is a cooperative corner of the internet. We operate different free and open-source platforms, like Nextcloud and Mastodon, all integrated together by a shared authentication system. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.
The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, we are working on getting a registration process going.
ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.
## Learn more
To learn more please visit some of the pages:
[[Platforms]] - The online spaces we use and manage
[Support](https://support.ilot.io) - Guides for how to do things on ilot and to get help

171
content/meta/license.mdwn Normal file
View file

@ -0,0 +1,171 @@
[[!meta title="Licensing"]]
[[!toc levels=2 startlevel=2]]
Software
========
This site was generated with [ikwiki](https://ikiwiki.info/), which is
generally © 2006-2011 Joey Hess, under the GPL-2+ license. See the
[complete copyright file](http://sources.debian.net/src/ikiwiki/sid/debian/copyright/)
for more information.
Design
======
The design of this site falls under a different license, see the
[source code](https://lab.ilot.io/ilot/ikiwiki-bootstrap-ilot) for
the ultimate reference. Right now, it is a
[modified bootstrap theme](https://anarc.at/blog/2015-09-09-bootstrap/)
licensed under a MIT license and, like all bootstrap derived themes,
is "© 2011-2015 Twitter, Inc", but also © 2009-2015 Julian Andres
Klode for the Ikiwiki adaptation and © 2016-2017 Antoine Beaupré for
my modifications.
Content
=======
The *content* of this site is released under a Creative Commons
license, as such.
<!-- copy-paste from https://creativecommons.org/choose/ -->
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
Updates
=======
* 2024-06-14: initial license under CC-BY-SA
Complete license
================
<!-- copy-paste from https://creativecommons.org/licenses/by-sa/4.0/legalcode -->
<h3>Creative Commons Attribution-ShareAlike 4.0 International Public License</h3>
<p>By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.</p>
<p id="s1"><strong>Section 1 Definitions.</strong></p>
<ol type="a">
<li id="s1a"><strong>Adapted Material</strong> means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.</li>
<li id="s1b"><strong>Adapter's License</strong> means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.</li>
<li id="s1c"><strong>BY-SA Compatible License</strong> means a license listed at <a href="//creativecommons.org/compatiblelicenses"> creativecommons.org/compatiblelicenses</a>, approved by Creative Commons as essentially the equivalent of this Public License.</li>
<li id="s1d"><strong>Copyright and Similar Rights</strong> means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section <a href="#s2b">2(b)(1)-(2)</a> are not Copyright and Similar Rights.</li>
<li id="s1e"><strong>Effective Technological Measures</strong> means those measures that, in the absence of proper authority, may not
be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar
international agreements.</li>
<li id="s1f"><strong>Exceptions and Limitations</strong> means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.</li>
<li id="s1g"><strong>License Elements</strong> means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.</li>
<li id="s1h"><strong>Licensed Material</strong> means the artistic or literary work, database, or other material to which the Licensor applied this Public License.</li>
<li id="s1i"><strong>Licensed Rights</strong> means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.</li>
<li id="s1j"><strong>Licensor</strong> means the individual(s) or entity(ies) granting rights under this Public License.</li>
<li id="s1k"><strong>Share</strong> means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.</li>
<li id="s1l"><strong>Sui Generis Database Rights</strong> means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.</li>
<li id="s1m"><strong>You</strong> means the individual or entity exercising the Licensed Rights under this Public License. <strong>Your</strong> has a corresponding meaning.</li>
</ol>
<p id="s2"><strong>Section 2 Scope.</strong></p>
<ol type="a">
<li id="s2a"><strong>License grant</strong>.
<ol>
<li id="s2a1">Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
<ol type="A">
<li id="s2a1A">reproduce and Share the Licensed Material, in whole or in part; and</li>
<li id="s2a1B">produce, reproduce, and Share Adapted Material.</li>
</ol>
<li id="s2a2"><span style="text-decoration: underline;">Exceptions and Limitations</span>. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.</li>
<li id="s2a3"><span style="text-decoration: underline;">Term</span>. The term of this Public License is specified in Section <a href="#s6a">6(a)</a>.</li>
<li id="s2a4"><span style="text-decoration: underline;">Media and formats; technical modifications allowed</span>. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section <a href="#s2a4">2(a)(4)</a> never produces Adapted Material.</li>
<li id="s2a5"><span style="text-decoration: underline;">Downstream recipients</span>.
<div class="para">
<ol type="A">
<li id="s2a5A"><span style="text-decoration: underline;">Offer from the Licensor Licensed Material</span>. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.</li>
<li id="s2a5B"><span style="text-decoration: underline;">Additional offer from the Licensor Adapted Material</span>. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapters License You apply.</li>
<li id="s2a5C"><span style="text-decoration: underline;">No downstream restrictions</span>. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.</li>
</ol>
</div>
<li id="s2a6"><span style="text-decoration: underline;">No endorsement</span>. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section <a href="#s3a1Ai">3(a)(1)(A)(i)</a>.</li>
</ol>
<li id="s2b"><p><strong>Other rights</strong>.</p>
<ol>
<li id="s2b1">Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.</li>
<li id="s2b2">Patent and trademark rights are not licensed under this Public License.</li>
<li id="s2b3">To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.</li>
</ol>
</li>
</ol>
<p id="s3"><strong>Section 3 License Conditions.</strong></p>
<p>Your exercise of the Licensed Rights is expressly made subject to the following conditions.</p>
<ol type="a">
<li id="s3a"><p><strong>Attribution</strong>.</p>
<ol>
<li id="s3a1"><p>If You Share the Licensed Material (including in modified form), You must:</p>
<ol type="A">
<li id="s3a1A">retain the following if it is supplied by the Licensor with the Licensed Material:
<ol type="i">
<li id="s3a1Ai">identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);</li>
<li id="s3a1Aii">a copyright notice;</li>
<li id="s3a1Aiii">a notice that refers to this Public License; </li>
<li id="s3a1Aiv">a notice that refers to the disclaimer of warranties;</li>
<li id="s3a1Av">a URI or hyperlink to the Licensed Material to the extent reasonably practicable;</li>
</ol>
<li id="s3a1B">indicate if You modified the Licensed Material and retain an indication of any previous modifications; and</li>
<li id="s3a1C">indicate the Licensed Material is licensed under this Public License,
and include the text of, or the URI or hyperlink to, this Public
License.</li>
</ol>
</li>
<li id="s3a2">You may satisfy the conditions in Section <a href="#s3a1">3(a)(1)</a> in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.</li>
<li id="s3a3">If requested by the Licensor, You must remove any of the information required by Section <a href="#s3a1A">3(a)(1)(A)</a> to the extent reasonably practicable.</li>
</ol>
</li>
<li id="s3b"><strong>ShareAlike</strong>.
<p>In addition to the conditions in Section <a href="#s3a">3(a)</a>, if You Share Adapted Material You produce, the following conditions also apply.</p>
<ol>
<li id="s3b1">The Adapters License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License.</li>
<li id="s3b2">You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.</li>
<li id="s3b3">You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.</li>
</ol>
</li>
</ol>
<p id="s4"><strong>Section 4 Sui Generis Database Rights.</strong></p>
<p>Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:</p>
<ol type="a">
<li id="s4a">for the avoidance of doubt, Section <a href="#s2a1">2(a)(1)</a> grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;</li>
<li id="s4b">if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section <a href="#s3b">3(b)</a>; and</li>
<li id="s4c">You must comply with the conditions in Section <a href="#s3a">3(a)</a> if You Share all or a substantial portion of the contents of the database.</li>
</ol>
For the avoidance of doubt, this Section <a href="#s4">4</a> supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
<p id="s5"><strong>Section 5 Disclaimer of Warranties and Limitation of Liability.</strong></p>
<ol style="font-weight: bold;" type="a">
<li id="s5a"><strong>Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.</strong></li>
<li id="s5b"><strong>To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.</strong></li>
</ol>
<ol start="3" type="a">
<li id="s5c">The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.</li>
</ol>
<p id="s6"><strong>Section 6 Term and Termination.</strong></p>
<ol type="a">
<li id="s6a">This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.</li>
<li id="s6b">
<p>Where Your right to use the Licensed Material has terminated under Section <a href="#s6a">6(a)</a>, it reinstates:</p>
<ol>
<li id="s6b1">automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or</li>
<li id="s6b2">upon express reinstatement by the Licensor.</li>
</ol>
For the avoidance of doubt, this Section <a href="#s6b">6(b)</a> does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.</li>
<li id="s6c">For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.</li>
<li id="s6d">Sections <a href="#s1">1</a>, <a href="#s5">5</a>, <a href="#s6">6</a>, <a href="#s7">7</a>, and <a href="#s8">8</a> survive termination of this Public License.</li>
</ol>
<p id="s7"><strong>Section 7 Other Terms and Conditions.</strong></p>
<ol type="a">
<li id="s7a">The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.</li>
<li id="s7b">Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.</li>
</ol>
<p id="s8"><strong>Section 8 Interpretation.</strong></p>
<ol type="a">
<li id="s8a">For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.</li>
<li id="s8b">To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.</li>
<li id="s8c">No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.</li>
<li id="s8d">Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.</li>
</ol>
<p class="shaded">Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” The text of the Creative Commons public licenses is dedicated to the public domain under the <a href="//creativecommons.org/publicdomain/zero/1.0/legalcode">CC0 Public Domain Dedication</a>. Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at <a href="//creativecommons.org/policies">creativecommons.org/policies</a>, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.<br><br>
Creative Commons may be contacted at <a href="//creativecommons.org/">creativecommons.org</a>.</p>

BIN
content/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

9
content/platforms.mdwn Normal file
View file

@ -0,0 +1,9 @@
# Platforms
* [Le Cloud](https://cloud.ilot.io)
* [L'Agora](https://agora.ilot.io)
* [Le Lab](https://lab.ilot.io)
* [Authentik](https://auth.ilot.io)
* [Support](https://support.ilot.io)
* [Status](https://status.ilot.io)
* [Notif](https://notif.ilot.io/)

View file

@ -0,0 +1,332 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="1920.000000pt" height="1920.000000pt" viewBox="0 0 1920.000000 1920.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.14, written by Peter Selinger 2001-2017
</metadata>
<g transform="translate(0.000000,1920.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M11675 17905 c-19 -42 -35 -80 -35 -86 0 -5 -4 -17 -10 -27 -5 -9
-32 -71 -58 -137 -146 -357 -205 -500 -207 -503 -2 -2 -72 12 -157 32 -223 51
-478 101 -623 121 -22 3 -56 8 -75 11 -19 2 -53 7 -75 9 -22 3 -51 7 -65 10
-14 2 -54 7 -90 10 -36 4 -76 8 -90 10 -25 4 -99 10 -255 20 -44 3 -109 8
-145 10 -79 6 -655 6 -725 1 -27 -2 -97 -7 -155 -11 -101 -6 -148 -10 -255
-21 -27 -2 -72 -7 -100 -10 -46 -4 -86 -9 -155 -19 -14 -2 -45 -7 -70 -10
-108 -14 -392 -65 -561 -100 -25 -6 -28 -1 -84 132 -32 76 -71 166 -87 201
-15 34 -28 65 -28 68 0 3 -6 20 -14 37 -8 18 -40 94 -71 169 -53 126 -59 136
-79 128 -33 -13 -1506 -630 -1551 -649 -22 -10 -185 -78 -362 -152 -182 -75
-323 -140 -323 -147 0 -7 4 -20 10 -30 11 -21 170 -400 170 -407 0 -2 11 -28
24 -57 41 -90 87 -201 84 -203 -778 -463 -1454 -1042 -2025 -1731 -175 -212
-513 -675 -513 -704 0 -6 -3 -10 -7 -10 -5 0 -28 -34 -53 -75 -25 -41 -48 -75
-53 -75 -7 0 -69 25 -495 200 -85 34 -157 59 -161 54 -7 -8 -250 -596 -373
-904 -21 -52 -42 -104 -48 -115 -5 -11 -35 -83 -65 -160 -31 -77 -62 -153 -70
-170 -7 -16 -32 -77 -55 -135 -23 -58 -46 -114 -51 -125 -11 -25 -106 -258
-197 -480 l-69 -171 316 -129 c174 -71 319 -134 323 -139 4 -5 3 -17 -1 -25
-5 -9 -11 -29 -14 -46 -3 -16 -20 -97 -37 -180 -40 -190 -38 -179 -45 -238 -3
-28 -8 -53 -9 -56 -2 -3 -7 -31 -11 -61 -4 -30 -8 -57 -10 -60 -2 -3 -6 -34
-10 -70 -3 -36 -8 -72 -10 -80 -2 -8 -7 -44 -10 -80 -4 -36 -9 -73 -11 -84 -2
-10 -6 -53 -9 -95 -4 -42 -8 -87 -10 -101 -2 -14 -7 -83 -11 -155 -4 -71 -8
-150 -10 -175 -4 -69 -3 -578 1 -640 2 -30 6 -108 10 -173 3 -65 8 -126 10
-135 1 -9 6 -56 9 -104 4 -48 9 -98 11 -110 4 -26 15 -117 19 -163 2 -16 6
-43 9 -60 4 -16 9 -50 12 -75 5 -43 10 -75 20 -130 3 -14 8 -43 11 -65 9 -62
64 -338 69 -346 3 -3 7 -24 11 -45 3 -22 14 -70 24 -109 10 -38 16 -73 12 -76
-4 -4 -59 -28 -122 -54 -63 -27 -160 -67 -215 -90 -55 -23 -146 -61 -202 -85
-116 -48 -109 -30 -56 -155 14 -33 31 -73 38 -90 7 -16 36 -86 65 -155 29 -69
58 -138 65 -155 8 -16 100 -237 206 -490 198 -476 389 -930 418 -1000 10 -22
38 -88 62 -147 24 -59 48 -108 52 -108 8 0 274 108 322 130 11 5 93 40 182 78
l163 69 87 -131 c154 -231 441 -613 550 -731 10 -11 43 -49 73 -85 133 -156
441 -472 598 -612 53 -48 108 -98 122 -110 14 -13 66 -57 115 -98 50 -41 92
-77 95 -81 12 -14 250 -195 366 -280 149 -107 389 -266 551 -363 l112 -67 -29
-67 c-34 -81 -129 -313 -211 -516 -34 -81 -57 -152 -52 -156 4 -3 136 -59 293
-123 282 -115 895 -366 1410 -577 146 -60 331 -135 411 -168 l146 -60 63 157
c35 86 71 174 80 196 10 22 32 74 48 115 99 246 124 306 131 313 5 5 26 4 47
-2 22 -5 53 -12 69 -15 17 -3 95 -16 175 -30 80 -14 217 -35 305 -46 224 -28
232 -29 316 -35 41 -3 88 -7 104 -10 168 -24 1029 -25 1186 0 13 2 58 6 99 9
41 4 91 8 110 10 129 13 167 18 180 21 8 2 39 7 69 10 30 4 63 8 74 11 11 2
42 6 69 9 27 3 72 10 101 16 28 6 66 13 82 15 134 22 425 86 565 124 19 5 38
6 42 2 6 -7 64 -142 268 -629 86 -207 94 -221 114 -213 33 12 599 249 621 260
11 5 76 32 145 60 69 29 139 58 155 65 17 7 183 77 370 155 187 78 424 178
527 221 103 44 195 82 205 86 10 3 41 16 68 28 28 12 71 30 97 41 27 10 48 24
48 29 0 6 -36 96 -80 200 -228 540 -292 697 -284 704 5 4 68 47 139 96 113 76
372 266 459 337 88 70 261 215 280 233 6 6 54 49 106 95 154 138 446 434 615
624 29 33 169 201 221 266 179 224 368 488 509 713 49 78 77 113 99 124 31 14
36 13 147 -31 63 -26 123 -51 134 -56 120 -56 668 -270 674 -264 7 8 249 596
373 904 21 52 42 104 47 115 6 11 80 193 167 405 207 507 212 521 282 691 l60
146 -157 63 c-86 34 -169 68 -186 76 -24 11 -212 87 -591 241 -40 17 -41 18
-32 52 11 44 13 55 43 206 34 170 50 265 70 420 4 33 9 67 10 75 2 9 6 43 10
75 3 33 8 74 10 90 2 17 7 66 10 110 4 44 9 87 10 96 25 137 25 1003 1 1229
-3 19 -7 69 -10 110 -4 42 -8 87 -10 100 -3 14 -7 52 -11 85 -6 63 -51 372
-60 415 -2 13 -7 42 -11 64 -3 22 -7 43 -9 46 -2 3 -6 26 -10 50 -3 25 -17 94
-31 154 -13 61 -21 113 -17 117 5 3 103 46 218 94 270 113 262 109 315 132 25
11 129 55 232 98 174 72 186 79 178 99 -11 30 -109 265 -126 301 -7 17 -34 81
-59 144 -26 63 -50 121 -55 130 -5 9 -25 57 -45 106 -20 50 -42 104 -50 120
-7 17 -59 140 -115 275 -56 135 -144 344 -195 465 -50 121 -136 327 -191 457
-54 131 -103 238 -108 238 -9 0 -210 -82 -328 -134 -198 -88 -593 -246 -604
-242 -8 3 -19 16 -24 28 -17 40 -287 449 -325 491 -6 7 -35 46 -65 87 -59 83
-258 333 -314 395 -19 22 -39 45 -43 50 -94 119 -503 536 -688 701 -273 244
-515 432 -837 651 -87 58 -158 110 -158 115 0 9 51 135 234 581 59 143 108
268 109 279 2 16 -22 29 -143 79 -80 32 -154 63 -165 68 -17 8 -501 206 -675
276 -262 106 -1221 500 -1243 512 l-28 14 -34 -76z m-1900 -1189 c72 -4 153
-9 180 -11 78 -7 177 -17 205 -20 14 -1 56 -5 93 -9 37 -4 76 -9 85 -11 9 -1
42 -6 72 -10 266 -34 775 -145 1040 -227 279 -86 641 -219 829 -304 174 -79
232 -107 388 -186 94 -48 190 -98 212 -112 22 -15 43 -26 46 -26 11 0 273
-161 430 -265 156 -104 416 -291 491 -354 17 -14 51 -42 75 -61 244 -196 601
-537 810 -776 94 -107 150 -172 171 -200 12 -16 25 -31 28 -34 38 -36 282
-365 396 -535 206 -306 420 -693 570 -1027 25 -57 52 -116 60 -133 77 -168
225 -584 298 -840 41 -142 129 -500 141 -575 3 -19 8 -42 10 -50 2 -8 7 -35
10 -60 3 -25 8 -52 10 -60 14 -49 53 -330 70 -505 3 -33 8 -78 10 -100 2 -22
7 -89 11 -150 3 -60 8 -130 10 -155 4 -59 4 -480 -1 -590 -8 -206 -21 -357
-50 -585 -1 -11 -3 -33 -4 -48 l-1 -29 -134 71 c-279 146 -533 301 -784 475
l-128 90 -23 65 c-25 73 -162 399 -223 531 -251 540 -235 516 -503 749 -256
221 -848 642 -1127 799 -18 11 -53 31 -78 46 -25 14 -90 48 -145 75 -55 28
-114 65 -131 83 -92 99 -190 253 -434 687 -330 587 -429 729 -580 827 -89 57
-162 131 -389 389 -34 39 -396 475 -481 580 -36 44 -70 85 -76 90 -6 6 -30 35
-55 65 -24 30 -46 57 -49 60 -3 3 -35 39 -70 80 -35 41 -69 80 -74 86 -6 6
-40 44 -75 83 -97 109 -232 239 -292 280 -84 57 -115 68 -209 70 -117 3 -223
-30 -430 -132 -154 -76 -169 -81 -230 -82 -71 0 -116 7 -200 30 -30 8 -89 18
-131 21 -84 7 -135 -9 -206 -64 -33 -26 -469 -292 -478 -292 -2 0 -73 -41
-157 -91 -84 -51 -247 -148 -363 -217 -265 -158 -407 -254 -444 -300 -33 -43
-129 -201 -191 -317 -23 -44 -50 -93 -60 -110 -9 -16 -39 -70 -65 -120 -81
-153 -117 -218 -151 -278 -19 -32 -34 -60 -34 -62 0 -6 -136 -238 -164 -279
-14 -20 -38 -47 -53 -59 -39 -30 -52 -41 -184 -154 -63 -54 -137 -116 -163
-138 -27 -22 -54 -45 -60 -50 -92 -85 -274 -214 -361 -256 -55 -27 -93 -57
-175 -139 -205 -204 -662 -783 -854 -1082 -74 -114 -374 -537 -402 -566 -7 -6
-16 -21 -19 -32 -4 -13 -37 -36 -86 -60 -162 -82 -275 -164 -410 -299 -113
-113 -185 -203 -317 -395 -143 -208 -153 -217 -437 -368 -87 -46 -453 -228
-460 -228 -1 0 -49 -22 -106 -49 -219 -103 -598 -271 -612 -271 -5 0 -14 55
-31 195 -4 33 -9 74 -11 90 -9 66 -15 123 -20 190 -3 39 -8 88 -10 110 -22
217 -22 862 0 1030 2 17 7 68 10 115 4 47 9 103 11 125 3 22 6 58 9 81 2 22 6
54 9 70 3 16 8 52 11 79 9 70 14 102 25 165 5 30 12 71 15 90 26 165 124 580
181 765 20 66 37 127 39 135 4 18 92 276 105 305 4 11 36 92 70 180 67 172 68
176 171 399 128 276 330 638 508 906 69 103 207 301 238 340 6 8 47 60 89 115
81 105 263 322 348 415 156 170 499 500 663 637 12 10 31 26 42 36 494 412
1110 790 1716 1052 119 52 435 176 460 181 6 1 30 10 55 19 255 94 801 238
1020 270 24 4 47 8 50 10 3 1 25 6 50 9 25 3 56 8 70 11 13 2 42 7 65 10 22 3
51 8 65 10 14 2 45 7 70 10 25 3 61 8 80 10 39 5 94 11 190 20 36 3 85 8 110
10 25 2 108 7 185 11 77 3 141 7 142 8 5 4 456 -2 568 -8z m693 -2056 c100
-78 300 -295 558 -605 40 -48 268 -324 342 -415 318 -387 521 -603 642 -684
103 -70 164 -145 303 -376 83 -140 74 -124 240 -420 66 -118 123 -219 127
-225 4 -5 20 -32 35 -60 66 -121 219 -338 287 -408 63 -64 89 -82 188 -130
142 -70 329 -182 565 -339 158 -106 541 -380 555 -397 3 -3 34 -28 70 -56 36
-27 67 -52 70 -55 3 -4 35 -32 71 -62 61 -52 131 -119 187 -180 21 -23 264
-529 258 -536 -2 -1 -23 16 -47 39 -76 72 -250 208 -349 273 -122 81 -221 135
-395 217 -212 99 -236 113 -306 176 -95 86 -166 139 -370 274 -101 67 -220
148 -265 180 -44 32 -109 72 -145 88 -66 30 -197 65 -284 77 -27 3 -59 8 -70
10 -11 2 -83 6 -160 9 -214 8 -241 12 -428 65 -388 108 -494 112 -671 24 -37
-18 -96 -52 -130 -75 -57 -39 -205 -155 -216 -170 -6 -9 -145 88 -189 132 -18
19 -53 61 -77 95 -34 47 -226 347 -301 470 -6 10 -38 61 -70 112 -32 51 -63
101 -68 110 -87 146 -238 354 -301 414 -22 20 -77 56 -124 80 -96 50 -135 72
-235 133 -512 308 -767 420 -944 414 -36 -1 -77 -5 -91 -9 -14 -4 -45 -13 -70
-20 -75 -22 -238 -103 -390 -195 -167 -102 -254 -145 -291 -145 -43 0 -126
-49 -177 -105 -75 -82 -158 -211 -334 -518 -198 -348 -228 -392 -295 -431 -92
-55 -132 -91 -499 -442 -431 -413 -528 -485 -694 -519 -45 -9 -549 -137 -629
-160 -51 -14 -95 -24 -97 -22 -2 2 17 32 43 68 26 35 105 151 176 258 127 190
242 351 359 501 33 41 71 90 86 109 15 19 53 67 85 105 252 305 333 388 418
431 97 47 194 117 401 288 101 83 189 157 196 164 8 7 62 53 120 101 59 48
119 100 134 115 28 29 104 140 139 204 11 21 30 54 41 73 11 19 77 139 145
265 69 127 141 259 161 295 19 36 49 90 65 120 16 30 58 102 93 160 59 99 68
108 148 163 46 31 89 57 94 57 6 0 12 3 14 8 2 4 116 74 253 156 138 82 282
168 320 191 39 23 115 68 170 100 166 97 397 237 442 267 23 15 48 28 55 28 7
0 60 -12 118 -26 61 -15 143 -27 195 -29 112 -5 172 13 370 110 225 110 314
131 373 85z m-1503 -2097 c67 -24 277 -125 360 -173 22 -13 59 -34 83 -47 23
-12 67 -39 97 -58 31 -19 57 -35 60 -35 2 0 45 -25 94 -55 50 -30 130 -75 178
-101 107 -56 124 -71 210 -193 62 -86 229 -344 257 -396 33 -61 276 -443 329
-517 86 -120 139 -175 233 -241 70 -50 272 -207 329 -255 11 -10 83 -69 160
-132 77 -62 190 -156 250 -208 61 -52 121 -103 135 -115 98 -81 217 -186 315
-279 173 -164 295 -246 927 -623 9 -5 29 -17 45 -26 54 -30 568 -329 583 -339
8 -5 45 -26 82 -47 38 -20 65 -40 60 -44 -17 -15 -313 -219 -382 -264 -79 -51
-298 -176 -315 -179 -5 -2 -35 -14 -66 -28 -72 -33 -223 -85 -271 -94 -34 -6
-49 1 -165 72 -254 155 -478 258 -608 279 -177 29 -435 -26 -654 -139 l-64
-33 -71 40 c-39 22 -82 47 -96 54 -14 7 -95 59 -180 115 -460 301 -624 387
-850 447 -247 66 -558 56 -812 -26 -46 -14 -88 -28 -95 -29 -6 -1 -60 -27
-121 -57 -133 -66 -260 -150 -452 -299 -258 -199 -418 -301 -588 -372 l-63
-27 -90 56 c-254 157 -473 241 -709 270 -61 8 -259 9 -305 1 -17 -2 -55 -8
-85 -11 -140 -18 -318 -72 -438 -134 l-37 -19 -125 64 c-129 65 -236 124 -280
152 -14 9 -34 22 -45 28 -11 6 -110 65 -220 131 -427 257 -573 316 -778 314
-98 -1 -134 -6 -222 -27 -88 -21 -84 -20 -158 -48 -152 -57 -299 -146 -652
-393 -274 -191 -475 -300 -690 -372 -122 -42 -169 -49 -180 -30 -4 5 -17 15
-28 20 -12 5 -31 15 -42 22 -11 7 -64 38 -118 70 -85 51 -111 77 -75 77 6 0
44 16 85 35 41 19 76 35 78 35 4 0 312 140 445 203 162 76 462 225 535 267 39
22 77 43 85 47 49 22 190 122 234 166 28 29 85 102 125 162 189 279 327 437
484 548 85 60 227 133 322 166 110 37 456 131 812 221 366 93 411 109 523 188
58 41 251 203 306 257 11 11 101 97 199 190 98 94 199 190 224 215 87 85 206
182 239 196 66 29 148 122 232 264 48 80 180 312 180 316 0 7 139 238 184 304
72 107 100 135 137 138 45 4 177 67 338 163 75 45 148 90 163 100 15 11 31 19
35 19 4 0 22 7 38 16 125 67 225 78 340 37z m2910 -1648 c39 -9 124 -32 191
-51 67 -19 131 -37 143 -39 13 -2 31 -7 41 -10 43 -14 71 -17 180 -20 407 -13
506 -39 707 -183 48 -35 162 -112 253 -171 91 -60 200 -140 243 -177 162 -141
153 -136 497 -301 278 -133 454 -260 725 -522 226 -218 426 -376 720 -566 83
-53 161 -105 175 -114 14 -10 32 -21 40 -25 8 -4 32 -17 52 -29 80 -48 279
-158 385 -214 62 -32 113 -62 113 -67 0 -5 -3 -7 -6 -3 -7 7 -211 -63 -278
-96 l-50 -24 -140 72 c-157 80 -187 97 -466 266 -470 283 -626 350 -820 350
-146 1 -275 -25 -419 -82 -42 -17 -90 -38 -107 -49 l-32 -18 -185 108 c-102
59 -191 110 -199 114 -7 3 -20 10 -28 16 -14 10 -258 152 -330 193 -69 39
-407 240 -515 306 -287 176 -408 262 -518 368 -40 38 -126 116 -192 173 -66
58 -122 107 -125 110 -3 3 -30 25 -60 50 -30 25 -57 47 -60 51 -5 6 -267 223
-360 299 -30 25 -68 56 -83 70 l-28 26 64 51 c70 57 170 120 232 146 47 20
131 17 240 -8z m-6924 -2171 c110 -36 244 -105 479 -247 118 -71 230 -138 248
-149 18 -10 43 -25 55 -33 12 -7 79 -45 149 -83 l126 -68 -61 -46 c-34 -25
-121 -90 -192 -145 -392 -301 -585 -386 -990 -438 -49 -6 -317 -7 -365 -1 -19
3 -60 7 -90 10 -87 9 -211 33 -322 61 -111 29 -327 102 -342 116 -6 5 -17 9
-25 9 -26 0 -443 212 -434 220 4 5 49 25 98 45 167 68 384 194 620 359 50 34
128 89 175 122 367 258 644 342 871 268z m4939 11 c213 -42 399 -134 790 -390
102 -67 218 -141 258 -165 40 -24 69 -46 65 -50 -16 -14 -310 -218 -368 -255
-255 -163 -450 -251 -684 -310 -100 -26 -120 -29 -226 -40 -33 -4 -71 -9 -85
-11 -30 -5 -320 -4 -370 1 -284 31 -549 113 -799 248 -85 45 -287 168 -316
191 l-26 21 68 34 c87 44 234 139 343 222 48 35 141 106 209 157 141 106 228
164 321 214 60 32 185 85 220 94 25 6 203 42 230 47 36 6 329 0 370 -8z m4850
-15 c98 -35 225 -99 402 -205 9 -5 108 -65 220 -132 178 -106 293 -172 391
-223 28 -14 28 -15 9 -30 -453 -353 -603 -449 -834 -531 -59 -21 -118 -40
-130 -43 -103 -19 -153 -28 -181 -31 -18 -2 -54 -6 -82 -10 -53 -6 -310 -7
-360 -1 -16 2 -64 7 -105 11 -41 4 -77 8 -80 10 -3 2 -26 6 -50 10 -78 11
-301 72 -404 109 -172 63 -300 122 -565 262 l-25 13 25 10 c250 97 441 206
789 452 310 219 506 320 665 345 22 3 42 8 44 10 2 2 49 2 105 1 75 -2 118 -9
166 -27z m-7556 -514 c201 -44 373 -129 730 -364 545 -357 814 -474 1236 -536
238 -36 612 -20 825 35 133 35 134 34 69 -15 -148 -111 -260 -196 -272 -207
-37 -31 -216 -137 -296 -174 -163 -77 -145 -77 -271 0 -293 177 -542 256 -810
258 -118 1 -245 -8 -310 -23 -22 -5 -52 -11 -67 -14 -56 -10 -202 -58 -272
-90 l-73 -33 -116 58 c-134 67 -291 155 -502 284 -82 51 -170 103 -195 117
-25 14 -74 42 -108 62 -350 199 -596 220 -943 81 -61 -24 -88 -38 -200 -99
-53 -29 -177 -112 -384 -256 -355 -246 -574 -361 -820 -426 -5 -1 -24 -7 -41
-12 -29 -9 -44 -3 -190 85 -400 238 -570 293 -815 259 -152 -21 -306 -75 -462
-163 -44 -25 -81 -43 -83 -40 -10 10 -199 552 -208 601 -3 12 -17 62 -31 111
-15 50 -28 97 -30 105 -2 8 -11 44 -20 80 -18 71 -22 84 -34 147 -10 51 -48
69 309 -146 485 -292 814 -442 1145 -525 105 -26 123 -30 220 -46 148 -24 251
-33 390 -34 108 0 314 11 336 18 8 3 30 7 49 10 19 3 46 8 60 11 14 3 38 8 54
10 71 13 260 82 362 131 99 47 346 203 414 261 129 109 387 292 491 347 140
75 305 129 433 142 33 4 63 8 65 10 12 11 295 -5 365 -20z m4814 -4 c96 -32
244 -111 487 -257 316 -190 395 -235 536 -308 116 -59 373 -174 409 -183 8 -1
56 -17 105 -35 50 -17 97 -32 105 -34 8 -2 62 -15 120 -29 58 -13 125 -27 150
-31 25 -4 65 -10 90 -15 25 -4 52 -8 60 -8 8 0 38 -3 65 -7 70 -9 334 -10 431
-2 364 31 664 152 1009 405 50 37 92 69 95 72 5 7 236 180 285 215 37 26 110
69 193 112 58 30 241 97 248 91 6 -7 -108 -483 -119 -494 -2 -3 -40 5 -83 17
-196 55 -465 11 -709 -116 -88 -45 -291 -169 -305 -185 -12 -14 -334 -233
-431 -293 -192 -119 -378 -203 -555 -252 l-81 -23 -137 84 c-76 46 -139 84
-141 84 -1 0 -35 18 -76 41 -133 73 -290 133 -384 146 -82 11 -269 4 -293 -11
-4 -2 -27 -7 -51 -11 -65 -10 -174 -51 -302 -116 l-56 -28 -139 83 c-76 45
-199 122 -273 170 -386 253 -555 342 -763 401 -31 9 -69 18 -84 21 -15 3 -31
7 -34 9 -12 8 -162 19 -255 19 -109 0 -265 -14 -315 -29 -21 -7 13 20 111 87
46 32 131 91 189 131 330 229 521 307 740 302 65 -2 115 -9 158 -23z m-5666
-713 c29 -6 83 -25 120 -40 78 -32 255 -124 279 -145 8 -8 18 -14 22 -14 3 0
82 -46 175 -103 93 -57 175 -107 183 -110 8 -4 37 -21 64 -37 28 -16 97 -55
153 -86 57 -31 100 -59 95 -64 -49 -43 -445 -335 -508 -375 -224 -140 -442
-216 -705 -245 -79 -9 -420 -5 -480 5 -285 48 -407 80 -620 161 -119 46 -500
231 -500 243 0 4 37 22 83 41 173 70 388 192 597 339 230 161 404 275 490 320
108 57 249 106 330 116 30 4 56 8 57 8 6 7 122 -3 165 -14z m4913 7 c198 -20
480 -141 725 -311 25 -18 50 -34 55 -36 6 -2 62 -38 125 -80 63 -41 152 -98
197 -125 45 -27 82 -52 83 -55 0 -8 -293 -213 -413 -288 -304 -191 -569 -289
-892 -328 -75 -9 -380 -10 -460 -1 -354 40 -695 174 -1053 413 l-62 42 42 19
c24 10 89 47 146 81 96 58 148 96 442 318 63 47 146 107 185 132 125 83 309
166 420 189 85 17 127 24 200 30 44 3 81 7 82 8 4 3 109 -1 178 -8z m4883 -12
c34 -9 64 -20 67 -24 6 -9 -118 -367 -164 -475 -5 -11 -37 -87 -71 -170 -34
-82 -107 -241 -162 -353 l-99 -202 -67 5 c-125 10 -182 18 -302 41 -41 8 -85
16 -98 19 -12 2 -26 6 -30 9 -5 3 -21 7 -35 10 -48 9 -219 66 -332 112 -117
48 -397 185 -434 214 -23 17 -23 17 38 39 150 55 401 194 601 334 179 125 435
295 490 325 132 71 264 116 377 128 32 4 59 7 60 8 8 7 107 -6 161 -20z
m-12566 -508 c98 -15 247 -84 465 -212 18 -10 124 -74 235 -140 288 -172 315
-188 483 -269 209 -101 471 -203 566 -220 18 -3 40 -10 50 -16 11 -5 19 -7 19
-5 0 3 10 2 23 -3 13 -5 40 -12 60 -15 20 -3 56 -10 79 -15 108 -24 290 -41
444 -43 383 -3 689 76 994 255 57 34 213 143 345 242 132 99 272 201 310 226
263 170 548 242 855 216 41 -4 90 -11 108 -16 17 -5 32 -8 32 -6 0 3 46 -12
103 -31 146 -51 253 -106 486 -249 9 -5 63 -41 121 -79 225 -149 297 -193 492
-299 120 -66 341 -151 503 -193 66 -17 70 -18 135 -29 25 -4 52 -9 61 -10 18
-4 86 -12 168 -20 173 -18 436 -3 638 36 57 10 114 24 128 29 55 21 58 9 9
-27 -90 -67 -249 -188 -254 -194 -3 -3 -39 -28 -80 -56 -95 -64 -224 -133
-319 -173 l-74 -30 -116 68 c-302 178 -527 251 -796 257 -223 5 -437 -33 -625
-111 -47 -20 -92 -38 -101 -41 -30 -9 -243 104 -604 320 -408 245 -546 315
-676 343 -98 20 -137 24 -215 20 -244 -13 -463 -101 -766 -307 -351 -240 -520
-350 -618 -402 -121 -63 -303 -137 -406 -163 l-70 -17 -110 65 c-167 101 -210
125 -329 183 -185 90 -282 115 -439 110 -154 -5 -297 -42 -465 -122 -83 -40
-96 -44 -120 -33 -48 22 -244 142 -456 280 -251 163 -298 191 -435 257 -102
49 -269 110 -320 116 -20 2 -33 19 -70 93 -62 123 -100 208 -100 221 0 17 49
49 158 103 133 66 208 90 327 105 28 4 51 8 52 9 3 3 80 -2 115 -8z m9780 -1
c118 -20 249 -85 623 -310 337 -202 481 -281 695 -378 108 -49 356 -138 424
-152 10 -3 33 -9 50 -14 42 -14 195 -44 286 -57 74 -11 84 -12 118 -13 17 -1
32 -6 32 -11 0 -6 -16 -36 -35 -66 -19 -30 -35 -57 -35 -60 0 -4 -126 -201
-136 -213 -2 -2 -40 18 -86 45 -273 159 -438 214 -620 209 -167 -6 -290 -37
-461 -117 -101 -48 -109 -50 -135 -37 -49 25 -226 131 -284 171 -31 21 -61 38
-67 38 -5 0 -11 3 -13 8 -1 4 -59 44 -128 88 -378 244 -580 334 -843 372 -125
18 -456 3 -497 -23 -6 -3 -10 -3 -10 2 1 9 121 93 370 261 240 162 435 246
594 259 34 2 62 6 64 7 3 4 37 0 94 -9z m-5558 -739 c97 -29 208 -83 428 -211
10 -5 94 -56 188 -113 167 -101 310 -183 403 -232 26 -14 47 -28 47 -31 0 -3
-51 -44 -112 -90 -62 -46 -118 -88 -124 -94 -57 -50 -236 -175 -329 -230 -106
-63 -268 -135 -335 -150 -3 -1 -24 -7 -47 -13 -23 -7 -66 -17 -95 -22 -29 -6
-64 -12 -78 -15 -131 -25 -465 -25 -630 1 -214 33 -436 98 -660 192 -90 38
-354 170 -390 195 l-22 15 24 7 c62 19 269 119 375 181 86 50 267 170 403 266
129 91 285 191 361 232 85 46 209 99 209 90 0 -3 9 0 20 6 29 15 185 37 250
35 30 -1 81 -10 114 -19z m4916 9 c180 -27 374 -106 600 -247 58 -36 186 -118
284 -182 99 -64 201 -129 228 -144 26 -15 48 -29 48 -32 -1 -7 -302 -213 -428
-293 -119 -75 -304 -168 -430 -216 -80 -30 -250 -76 -322 -87 -19 -2 -44 -7
-55 -9 -88 -19 -384 -25 -520 -11 -344 34 -632 142 -1012 378 -62 39 -113 72
-113 73 0 2 28 18 63 35 34 18 105 60 157 93 93 58 133 87 375 272 227 175
370 258 542 316 76 25 225 55 313 62 57 4 222 0 270 -8z m-9365 -137 c33 -17
109 -60 168 -97 59 -36 117 -71 127 -77 11 -6 28 -18 38 -27 10 -10 21 -17 25
-17 3 0 55 -32 114 -72 59 -40 148 -95 196 -124 l88 -52 -63 -45 c-129 -91
-303 -209 -313 -214 -24 -9 -393 550 -500 756 l-15 30 38 -16 c20 -8 64 -29
97 -45z m1739 -402 c102 -35 266 -118 423 -217 34 -21 65 -39 67 -39 3 0 24
-13 48 -29 74 -49 332 -198 463 -266 262 -137 583 -260 788 -301 12 -2 33 -7
47 -9 50 -11 136 -26 175 -30 22 -3 56 -7 75 -11 66 -11 415 -13 500 -4 296
35 557 125 795 275 79 50 261 179 275 195 31 36 338 254 413 294 34 18 71 37
82 43 33 18 138 60 170 68 17 5 35 9 40 11 180 50 430 63 585 28 14 -3 36 -7
50 -10 51 -11 178 -58 260 -97 104 -49 232 -126 457 -273 389 -255 601 -365
859 -444 55 -17 109 -32 120 -35 10 -2 51 -10 90 -19 70 -15 95 -19 229 -35
72 -9 453 -7 492 2 12 3 46 8 76 12 55 5 203 36 267 55 44 13 43 12 -140 -127
-240 -183 -400 -280 -553 -338 l-59 -22 -106 64 c-164 98 -374 193 -482 218
-8 2 -37 9 -65 15 -86 21 -135 25 -295 25 -137 0 -273 -10 -291 -21 -4 -2 -24
-6 -45 -10 -58 -9 -220 -62 -294 -96 l-64 -29 -51 23 c-48 22 -181 92 -296
156 -31 18 -173 102 -315 188 -329 197 -491 277 -633 310 -70 17 -248 13 -344
-7 -239 -49 -393 -131 -886 -475 -230 -161 -442 -273 -646 -344 -179 -61 -151
-65 -336 45 -160 96 -337 187 -414 214 -116 41 -180 51 -300 47 -171 -5 -301
-39 -471 -123 l-92 -45 -68 38 c-87 48 -263 158 -419 261 -336 222 -532 317
-771 374 -85 20 -125 24 -284 24 -173 -1 -239 -5 -307 -21 -18 -4 -24 -3 -18
3 10 10 216 153 355 248 244 165 421 245 585 262 28 3 51 6 53 8 12 10 144 -9
206 -29z m9731 13 c50 -12 156 -55 215 -87 123 -66 210 -118 210 -126 0 -12
-240 -329 -335 -443 l-76 -92 -62 36 c-158 93 -358 174 -517 209 -100 23 -382
27 -505 9 -49 -7 -91 -13 -92 -12 -1 2 68 50 359 250 241 165 415 243 581 263
29 4 53 7 55 9 6 5 129 -6 167 -16z m-10515 -714 c271 -30 424 -98 865 -385
116 -75 243 -156 284 -180 l74 -44 -25 -20 c-44 -36 -329 -231 -415 -284 l-82
-50 -103 85 c-272 227 -575 520 -793 768 -33 38 -66 74 -72 81 -23 22 -14 33
30 36 48 4 171 1 237 -7z m4942 -25 c108 -34 254 -111 533 -280 121 -73 240
-144 265 -158 25 -13 70 -39 100 -56 30 -17 76 -43 103 -56 26 -14 47 -27 46
-30 0 -3 -42 -35 -92 -72 -51 -38 -130 -97 -177 -133 -86 -66 -248 -180 -285
-201 -225 -125 -403 -186 -625 -214 -94 -12 -398 -16 -455 -6 -16 3 -68 10
-115 16 -47 6 -125 20 -175 31 -49 12 -97 22 -105 24 -50 11 -204 65 -325 113
-125 49 -436 200 -459 222 -5 5 1 13 15 19 222 92 367 169 574 308 159 107
305 207 321 221 23 20 210 135 265 163 110 55 218 93 304 105 22 4 41 8 43 9
2 2 38 3 81 3 57 0 99 -7 163 -28z m4913 16 c152 -31 237 -61 392 -138 l122
-61 -17 -23 c-24 -32 -380 -384 -477 -471 -109 -97 -144 -127 -220 -188 -27
-22 -52 -43 -55 -46 -9 -10 -224 -174 -305 -232 -76 -54 -82 -57 -125 -52
-148 18 -329 67 -485 130 -146 60 -241 108 -395 203 -58 36 -120 73 -137 84
-18 11 -33 23 -33 26 0 4 35 25 77 46 96 50 229 137 358 235 55 42 102 78 105
81 3 3 55 42 115 86 277 204 444 280 695 318 84 13 327 14 385 2z m-7642 -540
c104 -35 168 -67 415 -211 10 -5 62 -37 117 -71 82 -50 286 -170 370 -216 307
-171 706 -324 945 -363 19 -3 42 -8 50 -10 132 -39 614 -52 765 -21 11 2 40 7
65 11 262 41 567 177 805 358 5 4 75 57 155 118 440 337 641 424 995 434 153
4 268 -12 399 -56 90 -30 268 -112 330 -153 17 -11 47 -30 66 -40 19 -11 89
-55 155 -99 160 -106 320 -208 381 -242 111 -64 203 -112 274 -144 41 -18 87
-39 101 -46 30 -14 237 -81 298 -96 23 -5 41 -12 40 -13 -2 -2 -60 -37 -129
-79 -170 -102 -363 -207 -554 -300 l-159 -78 -86 26 c-275 86 -569 233 -1053
528 -265 162 -473 264 -578 282 -18 3 -37 8 -42 11 -11 7 -203 6 -253 -1 -73
-11 -204 -46 -267 -72 -158 -63 -299 -149 -643 -390 -340 -238 -634 -380 -890
-429 -11 -2 -31 -6 -45 -9 -120 -23 -201 -30 -395 -30 -203 0 -251 4 -431 39
-63 12 -169 43 -239 68 -44 17 -93 35 -110 40 -52 19 -307 153 -383 201 -40
26 -75 47 -78 47 -2 0 -10 5 -17 10 -7 6 -55 38 -107 72 -52 34 -138 89 -190
123 -285 185 -530 292 -730 320 -25 3 -58 9 -75 11 -30 6 -265 6 -320 0 -40
-4 -115 -16 -140 -23 -18 -5 -18 -3 -5 10 20 20 333 238 437 305 299 191 547
249 756 178z m-676 -703 c109 -21 211 -56 338 -118 138 -68 151 -75 425 -253
296 -191 284 -183 370 -233 275 -158 619 -276 880 -304 30 -3 73 -8 95 -12 80
-12 421 -4 506 12 9 2 40 6 70 10 89 11 307 70 421 115 204 79 402 189 648
361 503 351 659 426 900 435 178 6 263 -31 765 -332 262 -156 568 -321 695
-373 30 -12 72 -30 94 -39 l39 -17 -109 -42 c-277 -107 -672 -229 -932 -288
-82 -19 -319 -67 -367 -75 -33 -5 -71 -12 -85 -15 -14 -3 -43 -8 -65 -10 -22
-3 -67 -10 -100 -15 -33 -5 -87 -12 -120 -16 -33 -3 -67 -8 -76 -9 -9 -2 -52
-6 -95 -10 -43 -4 -90 -8 -104 -10 -187 -26 -954 -26 -1183 0 -18 2 -63 6
-102 10 -38 3 -88 8 -110 11 -22 3 -56 7 -75 9 -81 10 -198 26 -217 29 -11 3
-38 7 -59 10 -22 3 -50 8 -64 11 -14 2 -37 7 -52 9 -104 17 -293 59 -463 102
-55 14 -107 27 -115 29 -125 28 -604 186 -755 250 -16 7 -97 41 -180 75 -381
160 -771 368 -1134 607 -133 87 -132 86 -46 96 78 9 292 3 362 -10z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

6
content/sidebar.mdwn Normal file
View file

@ -0,0 +1,6 @@
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
<ul class="nav navbar-nav navbar-right">
<li>[[About Us|index]]</li>
<li>[[Platforms]]</li>
<li><a href="https://support.ilot.io">Support</a></li>
</ul>

19
content/site.webmanifest Normal file
View file

@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

393
ikiwiki.setup Normal file
View file

@ -0,0 +1,393 @@
# IkiWiki::Setup::Yaml - YAML formatted setup file
#
# Setup file for ikiwiki.
#
# Passing this to ikiwiki --setup will make ikiwiki generate
# wrappers and build the wiki.
#
# Remember to re-run ikiwiki --setup any time you edit this file.
#
# name of the wiki
wikiname: ilot.io
# contact email for wiki
adminemail: support@ilot.io
# users who are wiki admins
adminuser: []
# users who are banned from the wiki
banned_users: []
# where the source of the wiki is located
srcdir: ./content
# where to build the wiki
destdir: ./public
# base url to the wiki
url: https://ilot.io
# url to the ikiwiki.cgi
cgiurl: ''
# do not adjust cgiurl if CGI is accessed via different URL
reverse_proxy: 0
# filename of cgi wrapper to generate
cgi_wrapper: ''
# mode for cgi_wrapper (can safely be made suid)
cgi_wrappermode: 06755
# number of seconds to delay CGI requests when overloaded
cgi_overload_delay: ''
# message to display when overloaded (may contain html)
cgi_overload_message: ''
# enable optimization of only refreshing committed changes?
only_committed_changes: 0
# rcs backend to use
rcs: ''
# plugins to add to the default configuration
add_plugins:
- goodstuff
- favicon
- highlight
- typography
- sidebar
# plugins to disable
disable_plugins: []
# additional directory to search for template files
templatedir: ./themes/ikiwiki-bootstrap-ilot/templates
#templatedir: /usr/share/ikiwiki/templates
# base wiki source location
#underlaydir: /usr/share/ikiwiki/basewiki
#underlaydir: ./themes/ikiwiki-bootstrap-ilot/basewiki
# display verbose messages?
verbose: 1
# log to syslog?
#syslog: 1
# create output files named page/index.html?
usedirs: 1
# use '!'-prefixed preprocessor directives?
prefix_directives: 1
# use page/index.mdwn source files
indexpages: 0
# enable Discussion pages?
discussion: 1
# name of Discussion pages
discussionpage: Discussion
# use elements new in HTML5 like <section>?
html5: 1
# only send cookies over SSL connections?
sslcookie: 0
# extension to use for new pages
default_pageext: mdwn
# extension to use for html files
htmlext: html
# strftime format string to display date
timeformat: '%c'
# UTF-8 locale to use
#locale: en_US.UTF-8
# put user pages below specified page
userdir: ''
# how many backlinks to show before hiding excess (0 to show all)
numbacklinks: 10
# attempt to hardlink source files? (optimisation for large files)
hardlink: 0
# force ikiwiki to use a particular umask (keywords public, group or private, or a number)
#umask: public
# group for wrappers to run in
#wrappergroup: ikiwiki
# extra library and plugin directories
#libdirs: [themes/ikistrap/lib/]
# extra library and plugin directory (searched after libdirs)
libdir: ''
# environment variables
ENV: {}
# time zone name
timezone: :/etc/localtime
# regexp of normally excluded files to include
#include: ^\.htaccess$
# regexp of files that should be skipped
#exclude: ^(*\.private|Makefile)$
# specifies the characters that are allowed in source filenames
wiki_file_chars: -[:alnum:]+/.:_
# allow symlinks in the path leading to the srcdir (potentially insecure)
allow_symlinks_before_srcdir: 0
# cookie control
cookiejar:
file: ~/.ikiwiki/cookies
# set custom user agent string for outbound HTTP requests e.g. when fetching aggregated RSS feeds
useragent: ikiwiki/3.20160509
# theme has a responsive layout? (mobile-optimized)
responsive_layout: 1
# try harder to produce deterministic output
deterministic: 0
######################################################################
# core plugins
# (editpage, htmlscrubber, inline, link, meta, parentlinks, templatebody)
######################################################################
# htmlscrubber plugin
# PageSpec specifying pages not to scrub
#htmlscrubber_skip: '!*/Discussion'
# inline plugin
# enable rss feeds by default?
#rss: 0
# enable atom feeds by default?
#atom: 0
# allow rss feeds to be used?
#allowrss: 0
# allow atom feeds to be used?
#allowatom: 0
# urls to ping (using XML-RPC) on feed update
pingurl: []
######################################################################
# auth plugins
# (anonok, blogspam, emailauth, httpauth, lockedit, moderatedcomments,
# opendiscussion, openid, passwordauth, signinedit)
######################################################################
# anonok plugin
# PageSpec to limit which pages anonymous users can edit
#anonok_pagespec: '*/discussion'
# blogspam plugin
# PageSpec of pages to check for spam
#blogspam_pagespec: postcomment(*)
# options to send to blogspam server
#blogspam_options: blacklist=1.2.3.4,blacklist=8.7.6.5,max-links=10
# blogspam server JSON url
#blogspam_server: ''
# emailauth plugin
# email address to send emailauth mails as (default: adminemail)
#emailauth_sender: ''
# httpauth plugin
# url to redirect to when authentication is needed
#cgiauthurl: http://example.com/wiki/auth/ikiwiki.cgi
# PageSpec of pages where only httpauth will be used for authentication
#httpauth_pagespec: '!*/Discussion'
# lockedit plugin
# PageSpec controlling which pages are locked
#locked_pages: '!*/Discussion'
# moderatedcomments plugin
# PageSpec matching users or comment locations to moderate
#moderate_pagespec: '*'
# openid plugin
# url pattern of openid realm (default is cgiurl)
#openid_realm: ''
# url to ikiwiki cgi to use for openid authentication (default is cgiurl)
#openid_cgiurl: ''
# passwordauth plugin
# a password that must be entered when signing up for an account
#account_creation_password: s3cr1t
# cost of generating a password using Authen::Passphrase::BlowfishCrypt
#password_cost: 8
######################################################################
# format plugins
# (creole, highlight, hnb, html, mdwn, otl, rawhtml, rst, textile, txt)
######################################################################
# highlight plugin
# types of source files to syntax highlight
#tohighlight: .c .h .cpp .pl .py Makefile:make
# location of highlight's filetypes.conf
#filetypes_conf: /etc/highlight/filetypes.conf
# location of highlight's langDefs directory
#langdefdir: /usr/share/highlight/langDefs
# mdwn plugin
# enable multimarkdown features?
#multimarkdown: 0
# disable use of markdown discount?
#nodiscount: 0
######################################################################
# special-purpose plugins
# (osm, underlay)
######################################################################
# osm plugin
# the default zoom when you click on the map link
#osm_default_zoom: 15
# the icon shown on links and on the main map
#osm_default_icon: ikiwiki/images/osm.png
# the alt tag of links, defaults to empty
#osm_alt: ''
# the output format for waypoints, can be KML, GeoJSON or CSV (one or many, comma-separated)
#osm_format: KML
# the icon attached to a tag, displayed on the map for tagged pages
#osm_tag_default_icon: icon.png
# Url for the OpenLayers.js file
#osm_openlayers_url: http://www.openlayers.org/api/OpenLayers.js
# Layers to use in the map. Can be either the 'OSM' string or a type option for Google maps (GoogleNormal, GoogleSatellite, GoogleHybrid or GooglePhysical). It can also be an arbitrary URL in a syntax acceptable for OpenLayers.Layer.OSM.url parameter.
#osm_layers:
# OSM: GoogleSatellite
# Google maps API key, Google layer not used if missing, see https://code.google.com/apis/console/ to get an API key
#osm_google_apikey: ''
# underlay plugin
# extra underlay directories to add
#add_underlays:
#- /home/axil/wiki.underlay
######################################################################
# web plugins
# (404, attachment, comments, editdiff, edittemplate, getsource, google,
# goto, mirrorlist, remove, rename, repolist, search, theme, userlist,
# websetup, wmd)
######################################################################
# attachment plugin
# enhanced PageSpec specifying what attachments are allowed
#allowed_attachments: virusfree() and mimetype(image/*) and maxsize(50kb)
# virus checker program (reads STDIN, returns nonzero if virus found)
#virus_checker: clamdscan -
# comments plugin
# PageSpec of pages where comments are allowed
#comments_pagespec: blog/* and !*/Discussion
# PageSpec of pages where posting new comments is not allowed
#comments_closed_pagespec: blog/controversial or blog/flamewar
# Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"
#comments_pagename: ''
# Interpret directives in comments?
#comments_allowdirectives: 0
# Allow anonymous commenters to set an author name?
#comments_allowauthor: 0
# commit comments to the VCS
#comments_commit: 1
# Restrict formats for comments to (no restriction if empty)
#comments_allowformats: mdwn txt
# getsource plugin
# Mime type for returned source.
#getsource_mimetype: text/plain; charset=utf-8
# mirrorlist plugin
# list of mirrors
#mirrorlist: {}
# generate links that point to the mirrors' ikiwiki CGI
#mirrorlist_use_cgi: 1
# repolist plugin
# URIs of repositories containing the wiki's source
#repositories:
#- svn://svn.example.org/wiki/trunk
# search plugin
# path to the omega cgi program
#omega_cgi: /usr/lib/cgi-bin/omega/omega
# use google site search rather than internal xapian index?
#google_search: 1
# theme plugin
# name of theme to enable
#theme: night_city
# websetup plugin
# list of plugins that cannot be enabled/disabled via the web interface
#websetup_force_plugins: []
# list of additional setup field keys to treat as unsafe
#websetup_unsafe: []
# show unsafe settings, read-only, in web interface?
#websetup_show_unsafe: 1
######################################################################
# widget plugins
# (calendar, color, conditional, cutpaste, date, format, fortune,
# graphviz, haiku, headinganchors, img, linkmap, listdirectives, map,
# more, orphans, pagecount, pagestats, poll, polygen, postsparkline,
# progress, shortcut, sparkline, table, template, teximg, toc, toggle,
# version)
######################################################################
# calendar plugin
# base of the archives hierarchy
#archivebase: archives
# PageSpec of pages to include in the archives, if option `calendar_autocreate` is true.
#archive_pagespec: page(posts/*) and !*/Discussion
# autocreate new calendar pages?
#calendar_autocreate: 1
# if set, when building calendar pages, also build pages of year and month when no pages were published (building empty calendars).
#calendar_fill_gaps: 1
# img plugin
# Image formats to process (jpeg, png, gif, svg, pdf or 'everything' to accept all)
#img_allowed_formats: ''
# listdirectives plugin
# directory in srcdir that contains directive descriptions
#directive_description_dir: ikiwiki/directive
# teximg plugin
# Should teximg use dvipng to render, or dvips and convert?
#teximg_dvipng: ''
# LaTeX prefix for teximg plugin
#teximg_prefix: |
# \documentclass{article}
# \usepackage[utf8]{inputenc}
# \usepackage{amsmath}
# \usepackage{amsfonts}
# \usepackage{amssymb}
# \pagestyle{empty}
# \begin{document}
# LaTeX postfix for teximg plugin
#teximg_postfix: \end{document}
######################################################################
# other plugins
# (aggregate, autoindex, brokenlinks, camelcase, ddate, embed, favicon,
# filecheck, flattr, goodstuff, htmlbalance, localstyle, loginselector,
# notifyemail, pagetemplate, pingee, pinger, prettydate, recentchanges,
# recentchangesdiff, relativedate, rsync, sidebar, smiley,
# sortnaturally, tag, testpagespec, trail, transient)
######################################################################
# aggregate plugin
# enable aggregation to internal pages?
#aggregateinternal: 1
# allow aggregation to be triggered via the web?
#aggregate_webtrigger: 0
# autoindex plugin
# commit autocreated index pages
#autoindex_commit: 1
# camelcase plugin
# list of words to not turn into links
#camelcase_ignore: []
# flattr plugin
# userid or user name to use by default for Flattr buttons
#flattr_userid: joeyh
# pinger plugin
# how many seconds to try pinging before timing out
#pinger_timeout: 15
# prettydate plugin
# format to use to display date
#prettydateformat: '%X, %B %o, %Y'
# recentchanges plugin
# name of the recentchanges page
recentchangespage: recentchanges
# number of changes to track
recentchangesnum: 100
# rsync plugin
# command to run to sync updated pages
#rsync_command: rsync -qa --delete . user@host:/path/to/docroot/
# sidebar plugin
# show sidebar page on all pages?
#global_sidebars: 1
# tag plugin
# parent page tags are located under
#tagbase: tag
# autocreate new tag pages?
#tag_autocreate: 1
# commit autocreated tag pages
#tag_autocreate_commit: 1

@ -0,0 +1 @@
Subproject commit ea1743843b473c1b0fc74f761e1403ada61f1ead