diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2017-12-25 16:58:41 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2017-12-25 16:58:41 -0500 |
commit | 49d54c0c3199fb8e380ce68f8fb08a308ddf56a7 (patch) | |
tree | 87e9be319452d75241476853a3b240aabdcbd7e2 /templates/index.tpl | |
parent | 6a844225b3b63b89926e136cf65c140df01a4677 (diff) | |
download | ytlibre-49d54c0c3199fb8e380ce68f8fb08a308ddf56a7.tar.lz ytlibre-49d54c0c3199fb8e380ce68f8fb08a308ddf56a7.tar.xz ytlibre-49d54c0c3199fb8e380ce68f8fb08a308ddf56a7.zip |
migración mayor a smarty PHP
Diffstat (limited to 'templates/index.tpl')
-rw-r--r-- | templates/index.tpl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/index.tpl b/templates/index.tpl new file mode 100644 index 0000000..2e4f3bf --- /dev/null +++ b/templates/index.tpl @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="es"> + <head> + <meta charset="UTF-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> + <title>{$titulo}</title> + <link rel="icon" href="templates/images/favicon.png" sizes="192x192" /> + <link href="{$styles.normalize}" rel="stylesheet"/> + <link href="{$styles.frond}" rel="stylesheet"/> + </head> + <body> + <div class="contenedor"> + <header> + <h2>Extractor de Youtube</h2> + </header> + <section class="libreyt"> + <h2>Herramienta Libre</h2> + <hr> + <form method="get" autocomplete="off" class="formulario"> + <input name="link" type="text" placeholder="Enlace de Youtube"/> + <input class="boton" name="submit" type="submit" value="Generar enlaces"/> + </form> + </section> + <footer> + <p class="copyleft">Esta web es Software Libre y esta disponible en <a class="enlace" rel="noopener noreferrer" href="https://notabug.org/heckyel/ytlibre" target="_blank">Notabug</a> bajo la Licencia + <a class="enlace" rel="license noopener noreferrer" href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank"> + <abbr title="GNU Affero General Public License version 3">GNU AGPLv3+</abbr> + </a> + </p> + </footer> + </div> + </body> +</html> |