cerca

lean forum software (pmc local branch)
git clone http://git.permacomputing.net/repos/cerca.git # read-only access
Log | Files | Refs | README | LICENSE

about.html (1974B)


      1 {{ template "head" . }}
      2 <main>
      3     <article>
      4         <h1> About </h1>
      5         <p>This forum is for and by the <a href="https://wiki.xxiivv.com/site/merveilles.html">Merveilles</a> community.</p>
      6         <p>The <a href="https://github.com/cblgh/cerca">forum software</a> itself was created from scratch by <a href="https://cblgh.org">cblgh</a> at the start of 2022, after a long time
      7         of pining for a new wave of forums hangs.</p>
      8 
      9         <p>If you are from Merveilles: <a href="/register">register</a> an account. If you're a passerby, feel free to read the <a href="/">public threads</a>.</p>
     10 
     11         <h2>Code of conduct</h2>
     12         <p>As with all Merveilles spaces, this forum abides by the compact set out in the <a href="https://github.com/merveilles/Resources/blob/master/CONDUCT.md">Merveilles Code of Conduct</a>.</p>
     13 
     14         <h2>Forum syntax</h2>
     15         <p>Posts in the forum are made using <a href="https://en.wikipedia.org/wiki/Markdown#Examples">Markdown
     16             syntax</a>.</p>
     17         <p><b>**Bold text**</b> and <i>*italics*</i></p>
     18 
     19         <ul>
     20             <li>* lists</li>
     21             <li>* like </li>
     22             <li>* this </li>
     23         </ul>
     24 
     25         <p><blockquote>&gt; Blockquote</blockquote></p>
     26 
     27         <p><code>`typewriter text`</code></p>
     28 
     29         <!-- leave the <pre><code> blocks from reformatting! they render all their spacing :)-->
     30 <pre><code>```
     31 blocks of
     32 code like
     33 this
     34 ```
     35 </code></pre>
     36 
     37         <p>Create links like <code>[this](url)</code>, and embed images like: <code>![description](url)</code>. Note how the image
     38         syntax's exclamation mark precedes the regular link syntax.</p>
     39 
     40         <p>Each post in the thread can be referenced like <code>[this post](#12)</code>, where 12 is the post number which can be
     41         found at each post timestamp.</p>
     42 
     43 <pre><code>this is one paragraph.
     44 this belongs to the same paragraph.
     45 
     46 this is a new paragraph
     47 </code></pre>
     48     </article>
     49 </main>
     50 {{ template "footer" . }}