diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -4,7 +4,6 @@ $titulo="Sitio personal de Jesús"; $nombre="Jesús"; $profesion="Desarrollador"; $description="Este es el sitio web personal de Jesús, un desarrollador, colaborador y hacker de proyectos con software Libre en reemplazo a las tecnologías privativas."; -$enviado = ""; /* ---- ---- Generated URL ---- ---- */ if ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ) { @@ -17,9 +16,6 @@ $extract_url = $pro."://".$_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME']; // URL $siteurl = preg_replace( '/index.php/', '', $extract_url ); -/* ---- ---- Correo ---- ---- */ -require_once('mail/mail.php'); - /* ---- ---- Menu ---- ---- */ $html=new Smarty; $html->assign("siteurl", $siteurl); @@ -32,20 +28,12 @@ $html->assign('yesterday', strtotime("now")); /* ---- ---- Description and Author ---- ---- */ $html->assign("description", $description); -/* ---- ---- EMAIL ---- ---- */ -$html->assign("enviado", $enviado); - /* ---- ---- CSS ---- ---- */ $html->assign('templates', array('estilos' => 'templates/css/estilos.min.css', 'normalize' => 'templates/css/normalize.css', 'favicon' => 'templates/images/favicon.png') ); -/* ---- ---- LibreJS ---- ---- */ -$html->assign('librejs', array('librejs' => 'templates/librejs.html', - 'formulario' => 'templates/js/formulario.min.js') -); - /* ---- ---- Projects and redes Sociales Libres ---- ---- */ $html->assign('projects', array('cl' => 'https://conocimientoslibres.tuxfamily.org', @@ -53,6 +41,10 @@ $html->assign('projects', 'librevideojs' => 'https://notabug.org/heckyel/librevideojs') ); +$html->assign('contacto', + array('keygpg' => 'templates/gnupg/heckyel_pub.asc') +); + $html->assign('sociales', array('diaspora' => 'https://diasp.org/u/heckyel', 'gnusocial' => 'https://quitter.cl/heckyel', |