diff options
Diffstat (limited to 'app/view/templates/font.php')
-rw-r--r-- | app/view/templates/font.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/app/view/templates/font.php b/app/view/templates/font.php index 3de0dce..6c53023 100644 --- a/app/view/templates/font.php +++ b/app/view/templates/font.php @@ -10,8 +10,11 @@ <main class="font"> +<section> -<h1>Fonts</h1> +<article> + +<h1>Fonts manager</h1> <div> @@ -21,6 +24,10 @@ <a href="<?= $fontfile ?>" target="_blank">👓 View font CSS file</a> </div> +</article> + +<article> + <h2>Add Font</h2> <form action="<?= $this->url('fontadd') ?>" method="post" enctype="multipart/form-data"> @@ -31,6 +38,9 @@ <input type="submit" value="upload font(s)"> </form> +</article> + +<article> <h2>Font stock</h2> @@ -55,6 +65,10 @@ foreach ($fontlist as $font ) { ?> </table> +</article> + +</section> + </main> </body> |