terms.php 554 B

12345678910111213
  1. <?php
  2. include("header.php");
  3. $config = parse_ini_file('../config/config.ini',true);
  4. ?>
  5. <main id="main">
  6. <article id="article">
  7. <h2><?=_('Halcyon Terms of Use')?></h2>
  8. <p class="description"><?=_('This terms of use agreement is for the users of web service Halcyon for Mastodon and Pleroma (Halcyon for short) hosted at')?> <a href="<?php echo $config["App"]["api_client_website"] ?>"><?php echo $config["App"]["api_client_website"] ?></a>.</p><br/>
  9. <?php echo file_get_contents("../config/terms.txt") ?>
  10. </article>
  11. </main>
  12. <?php include("footer.php") ?>