2023-04-26 02:28:11 +00:00
|
|
|
% layout 'default';
|
|
|
|
% title 'About Post::Text';
|
2023-06-04 21:47:36 +00:00
|
|
|
% content_for open_graph => begin
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:title" content="<%= title %>">
|
|
|
|
<meta
|
|
|
|
property="og:description"
|
2023-06-04 22:26:45 +00:00
|
|
|
content="Post::Text is a textboard a bit like 2channel. You can post whatever you want anonymously just please mind the rules."
|
2023-06-04 21:47:36 +00:00
|
|
|
>
|
|
|
|
% end
|
2023-06-07 19:43:45 +00:00
|
|
|
% content_for twitter_card => begin
|
|
|
|
<meta name="twitter:title" content="<%= title %>">
|
|
|
|
<meta
|
|
|
|
name="twitter:description"
|
|
|
|
content="Post::Text is a textboard a bit like 2channel. You can post whatever you want anonymously just please mind the rules."
|
|
|
|
>
|
|
|
|
% end
|
2023-05-20 03:50:44 +00:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
|
|
|
<main class="page-body">
|
2023-06-09 02:01:55 +00:00
|
|
|
<h3>What is this?</h3>
|
2023-05-10 00:07:28 +00:00
|
|
|
<p>Post::Text is a
|
|
|
|
<a href="https://en.wikipedia.org/wiki/Textboard">textboard</a>
|
|
|
|
a bit like 2channel. You can post whatever you want anonymously
|
2023-06-09 02:01:55 +00:00
|
|
|
just please mind the <%= link_to rules => 'rules_page' %>.</p>
|
2023-06-09 02:33:14 +00:00
|
|
|
<h3>Reporting Bugs/Errors</h3>
|
|
|
|
<p>If you manage to break something please let me know so I can fix
|
|
|
|
it. You can complain in a <%= link_to thread => 'post_thread' %>
|
2023-07-06 05:17:58 +00:00
|
|
|
or on <a
|
2023-08-25 16:26:24 +00:00
|
|
|
href="https://git.minimally.online/swaggboi/PostText">git</a> if
|
2023-06-09 02:33:14 +00:00
|
|
|
that's your sort of thing.</p>
|
2023-06-09 02:01:55 +00:00
|
|
|
<h3>Flagging Posts</h3>
|
|
|
|
<p>There is a button for users to 'flag' a post for review by a
|
|
|
|
moderator. If you need further assistance you can reach out to the
|
|
|
|
<a href="mailto:swaggboi@slackware.uk">webmaster</a>.</p>
|
|
|
|
<h3>Bumping Posts</h3>
|
|
|
|
<p>There is also a 'bump' button you're free to use and abuse to
|
|
|
|
your heart's content. When adding a remark to a thread, you can
|
|
|
|
uncheck the 'bump' box to remark on the post without bumping
|
|
|
|
it.</p>
|
|
|
|
<h3>Subscribing with RSS</h3>
|
|
|
|
<p>If you're already using a feed reader or some sort of email
|
|
|
|
client you can check out the
|
|
|
|
<%= link_to 'RSS feed', threads_feed => {format => 'rss'} %>.
|
|
|
|
A feed reader can really be anything. For example there's a
|
|
|
|
<a href="https://monitorss.xyz">Discord bot</a> to subscribe
|
|
|
|
to feeds.</p>
|
|
|
|
<h3>Formatting with Markdown/HTML Tags</h3>
|
|
|
|
<p>Markdown is supported for formatting posts using the
|
2023-05-10 00:07:28 +00:00
|
|
|
<a href="https://daringfireball.net/projects/markdown/syntax">
|
2023-06-09 02:01:55 +00:00
|
|
|
original implementation from The Daring Fireball</a>. For example:</p>
|
2023-04-26 02:28:11 +00:00
|
|
|
<pre><code>
|
|
|
|
This is `inline_code()` and so is ```this()```. This is incorrect:
|
|
|
|
|
|
|
|
```
|
|
|
|
if (true) {
|
|
|
|
do_stuff();
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
This is correct for a multi-line code block:
|
|
|
|
|
|
|
|
if (true) {
|
|
|
|
do_stuff();
|
|
|
|
}
|
2023-06-09 02:01:55 +00:00
|
|
|
|
|
|
|
This is a [hyperlink](http://example.com).
|
|
|
|
|
|
|
|
This is a paragraph.<br>
|
|
|
|
This is a new line within the same paragraph.
|
|
|
|
|
|
|
|
This is a new paragraph since I used two new lines.
|
|
|
|
|
|
|
|
- This is
|
|
|
|
- an unordered
|
|
|
|
- list.
|
|
|
|
|
|
|
|
1. This is
|
|
|
|
1. an ordered
|
|
|
|
1. list.
|
|
|
|
|
|
|
|
>This is a
|
|
|
|
>block quote.
|
|
|
|
>>Block quotes
|
|
|
|
>>can be nested.
|
2023-04-26 02:28:11 +00:00
|
|
|
</code></pre>
|
2023-05-04 01:05:57 +00:00
|
|
|
<p>You can use an actual tab character or four spaces to indent.
|
2023-05-27 17:04:15 +00:00
|
|
|
Only Markdown as well as the HTML tags <code><br></code> and
|
|
|
|
<code><s></code> are supported. <strong>All other HTML will
|
|
|
|
be filtered out.</strong></p>
|
2023-06-09 02:01:55 +00:00
|
|
|
<h3>Now Post a Thread</h3>
|
2023-04-26 02:28:11 +00:00
|
|
|
<p>Click 'New' in the top navigation bar to start a new thread and
|
2023-06-09 02:01:55 +00:00
|
|
|
post your manifesto. 🔥</p>
|
|
|
|
<h3>Webmaster PGP Key</h3>
|
|
|
|
<p>I like PGP so here's a public key that'll be used to sign
|
|
|
|
<em>super official</em> Post::Text business or you can use it to
|
|
|
|
email me from North Korea:</p>
|
2023-06-08 04:44:06 +00:00
|
|
|
<pre><code>
|
|
|
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
|
|
|
|
|
|
|
mDMEZID+chYJKwYBBAHaRw8BAQdAHIXzI3VFHN6JuZ3ZWZZk+DVjqiWg9ZFx23vu
|
|
|
|
lrq4vS60OXN3YWdnIGJvaSAoaHR0cHM6Ly93d3cuc3dhZ2cubmV0KSA8c3dhZ2di
|
|
|
|
b2lAc2xhY2t3YXJlLnVrPoiTBBMWCgA7FiEEYeDwu4lVO6bRa7gHd6/apzLpHrAF
|
|
|
|
AmSA/nICGwMFCwkIBwICIgIGFQoJCAsCBBYCAwECHgcCF4AACgkQd6/apzLpHrBK
|
|
|
|
dAEAvoU7S2qEU30/ebmLd3aAfn0psdJuObUFMFmlqKKPWlABANsc/+OppyEUbwpl
|
|
|
|
8baMWNw+rN2E0yw+b7TkHMXZ6gIDuDgEZID+chIKKwYBBAGXVQEFAQEHQLhSm2wg
|
|
|
|
qhRnCnB799D9mBcWUbRgpzFO74FqS39EJlN+AwEIB4h4BBgWCgAgFiEEYeDwu4lV
|
|
|
|
O6bRa7gHd6/apzLpHrAFAmSA/nICGwwACgkQd6/apzLpHrA7GgD/UeYdr3TRqsaQ
|
|
|
|
swIo1svyQMVBS1ZNN3Kcrb872g40YLkA/RV7V2WNGs04CPA4l1BG7/S8OfOTdJx7
|
|
|
|
V8A44FH+fkUI
|
|
|
|
=QJUC
|
|
|
|
-----END PGP PUBLIC KEY BLOCK-----
|
|
|
|
</code></pre>
|
2023-05-10 00:07:28 +00:00
|
|
|
</main>
|