25 lines
872 B
PHP
25 lines
872 B
PHP
<h1>Hello world!</h1>
|
|
<p>
|
|
Welcome to Subcon Town! We are a small tilde community, hosted for friends and family.
|
|
We offer SSH access, hosting of websites, gopher holes and gemini pods, alongside
|
|
other services like cloud services, git and fossil hosting and an activitypub server.
|
|
</p>
|
|
<p>
|
|
To find out more about this system and its services, view the <a class="page-link" href="/faq">faq</a> or visit
|
|
the <a target="_blank" href="https://library.subcon.town/">wiki</a>!
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
<h1>News</h1>
|
|
<!-- List of article stubs -->
|
|
<?php foreach($articles as $article) { ?>
|
|
<h2><?php echo $article->getTitle(); ?></h2>
|
|
<div class="article-stub">
|
|
<p><?php echo $article->getDescription(); ?></p>
|
|
|
|
<div class="article-stub-end">
|
|
<a class="page-link" href="/news/<?php echo $article->getSlug(); ?>">Read more</a>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|