Add about page
This commit is contained in:
parent
43c96d5e47
commit
e0eff29da3
3 changed files with 37 additions and 2 deletions
23
about.php
Normal file
23
about.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
include('init.php');
|
||||
include('templates/header.php');
|
||||
|
||||
?>
|
||||
<p>
|
||||
<strong>SimpleWordsCloud</strong> est un outil permettant de créer et
|
||||
de un visualiser un nuage de mots.
|
||||
Cet outil ne demande aucune inscription et
|
||||
n'enregistre rien de plus que les mots entrés,
|
||||
il respecte donc totalement votre vie privée.<br/>
|
||||
Le code source est publié sous
|
||||
<a href="https://mit-license.org/" title="Lien vers le site de la licence MIT">licence MIT</a>
|
||||
et est disponible sur
|
||||
<a href="https://git.vulgarisons.info/raghnarok/simpleWordsCloud" title="Lien vers le dépôt">mon dépôt git</a>.
|
||||
</p>
|
||||
<p>
|
||||
L'affichage du nuage est possible grâce au travail de
|
||||
<a href="https://timdream.org/" title="Lien vers le site de Timothy Guan-tin Chien">Timothy Guan-tin Chien</a>.
|
||||
</p>
|
||||
<?php
|
||||
include('templates/footer.php');
|
||||
?>
|
|
@ -61,10 +61,19 @@ footer, #page-wrap:after {
|
|||
/******************* Header *******************/
|
||||
|
||||
#navbar {
|
||||
font-size: 2em;
|
||||
position: relative;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
#navbar-right {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
bottom: 2em;
|
||||
}
|
||||
#navbar .title{
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/******************* Footer *******************/
|
||||
|
||||
#footer {
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
<body>
|
||||
<div id="page-wrap">
|
||||
<div id="navbar">
|
||||
<a href="index.php"><?php echo L::title ?></a>
|
||||
<a href="index.php" class="title"><?php echo L::title ?></a>
|
||||
<span id="navbar-right">
|
||||
<a href="about.php">À propos</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="container">
|
||||
|
|
Loading…
Reference in a new issue