|
@@ -18,7 +18,7 @@
|
|
|
<meta charset='utf-8'/>
|
|
<meta charset='utf-8'/>
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
|
|
|
<title>Iñigo Valentin</title>
|
|
<title>Iñigo Valentin</title>
|
|
|
- <link rel='shortcut icon' href='<?=$lserver?>/img/logo/favicon.ico'/>
|
|
|
|
|
|
|
+ <link rel='shortcut icon' href='<?=$lserver?>/img/logo/x2/favicon.ico'/>
|
|
|
<!-- CSS files -->
|
|
<!-- CSS files -->
|
|
|
<style>
|
|
<style>
|
|
|
<?php
|
|
<?php
|
|
@@ -47,26 +47,99 @@
|
|
|
<meta property='og:title' content='Iñigo Valentin'/>
|
|
<meta property='og:title' content='Iñigo Valentin'/>
|
|
|
<meta property='og:url' content='<?=$lserver?>'/>
|
|
<meta property='og:url' content='<?=$lserver?>'/>
|
|
|
<meta property='og:description' content=''/>
|
|
<meta property='og:description' content=''/>
|
|
|
- <meta property='og:image' content=''/>
|
|
|
|
|
|
|
+ <meta property='og:image' content='<?=$lserver?>/img/logo/x3/favicon.ico''/>
|
|
|
<meta property='og:site_name' content='Iñigo Valentin'/>
|
|
<meta property='og:site_name' content='Iñigo Valentin'/>
|
|
|
<meta property='og:type' content='website'/>
|
|
<meta property='og:type' content='website'/>
|
|
|
<meta property='og:locale' content='<?=$lang?>'/>
|
|
<meta property='og:locale' content='<?=$lang?>'/>
|
|
|
<meta name='twitter:card' content='summary'/>
|
|
<meta name='twitter:card' content='summary'/>
|
|
|
<meta name='twitter:title' content='Iñigo Valentin'/>
|
|
<meta name='twitter:title' content='Iñigo Valentin'/>
|
|
|
<meta name='twitter:description' content=''/>
|
|
<meta name='twitter:description' content=''/>
|
|
|
- <meta name='twitter:image' content=''/>
|
|
|
|
|
|
|
+ <meta name='twitter:image' content='<?=$lserver?>/img/logo/x3/favicon.ico''/>
|
|
|
<meta name='twitter:url' content='<?=$lserver?>'/>
|
|
<meta name='twitter:url' content='<?=$lserver?>'/>
|
|
|
<meta name='robots' content='index follow'/>
|
|
<meta name='robots' content='index follow'/>
|
|
|
</head>
|
|
</head>
|
|
|
<body>
|
|
<body>
|
|
|
<div id='logo'>
|
|
<div id='logo'>
|
|
|
- <img id='logo' src='<?=$lserver?>/img/logo/inigovalentin.png' alt='Iñigo Valentin'/>
|
|
|
|
|
|
|
+ <img id='logo' src='<?=$lserver?>/img/logo/x6/inigovalentin.png' alt='Iñigo Valentin'/>
|
|
|
</div>
|
|
</div>
|
|
|
<?php
|
|
<?php
|
|
|
include $doc_root . "header.php";
|
|
include $doc_root . "header.php";
|
|
|
?>
|
|
?>
|
|
|
<div id='content'>
|
|
<div id='content'>
|
|
|
-
|
|
|
|
|
|
|
+ <div id='content_row'>
|
|
|
|
|
+ <div class='content_cell' id='content_cell_profile'>
|
|
|
|
|
+ <div class='section'>
|
|
|
|
|
+ <h3 class='section_title'>Iñigo Valentin</h3>
|
|
|
|
|
+ <div class='entry'>
|
|
|
|
|
+ <img id='profile' src='<?=$lserver?>/img/profile/x16/preview/0.png' alt='Iñigo Valentin' title='Iñigo Valentin' />
|
|
|
|
|
+ </div> <!-- .entry -->
|
|
|
|
|
+ </div> <!-- .section -->
|
|
|
|
|
+ </div> <!-- #content_cell_profile -->
|
|
|
|
|
+ <div class='content_cell' id='content_cell_content'>
|
|
|
|
|
+ <div class='section'>
|
|
|
|
|
+ <h3 class='section_title'>TR#Ultimos proyectos</h3>
|
|
|
|
|
+<?php
|
|
|
|
|
+ $q_project = mysqli_query($con, "SELECT id, permalink, type, title, logo, header, license, (SELECT dtime FROM project_version WHERE project = p.id AND visible = 1 ORDER BY dtime desc LIMIT 1) AS modified FROM project p WHERE visible = 1 ORDER BY modified DESC LIMIT 3;");
|
|
|
|
|
+ while ($r_project = mysqli_fetch_array($q_project)){
|
|
|
|
|
+?>
|
|
|
|
|
+ <a href='<?=$lserver?>/project/<?=$r_project["permalink"]?>'>
|
|
|
|
|
+ <div class='entry project_row'>
|
|
|
|
|
+ <table>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+<?php
|
|
|
|
|
+ if (strlen($r_project["logo"]) > 0){
|
|
|
|
|
+?>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <img alt='<?=text($con, $r_project["title"], $lang)?>' title='<?=text($con, $r_project["title"], $lang)?>' src='<?=$lserver?>/img/project/x2/<?=$r_project["logo"]?>'/>
|
|
|
|
|
+ </td>
|
|
|
|
|
+<?php
|
|
|
|
|
+ }
|
|
|
|
|
+?>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <h4><?=text($con, $r_project["title"], $lang)?></h4>
|
|
|
|
|
+ <?=text($con, $r_project["header"], $lang)?>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
|
|
+ </div> <!-- .entry -->
|
|
|
|
|
+ </a>
|
|
|
|
|
+<?php
|
|
|
|
|
+ }
|
|
|
|
|
+?>
|
|
|
|
|
+ <h3 class='section_title'>TR#Ultimos posts</h3>
|
|
|
|
|
+<?php
|
|
|
|
|
+ $q_blog = mysqli_query($con, "SELECT * FROM post WHERE visible = 1 ORDER BY dtime DESC LIMIT 2;");
|
|
|
|
|
+ while ($r_blog = mysqli_fetch_array($q_blog)){
|
|
|
|
|
+ $q_image = mysqli_query($con, "SELECT * FROM post_image WHERE post = $r_blog[id] ORDER BY id LIMIT 1;");
|
|
|
|
|
+?>
|
|
|
|
|
+ <a href='<?=$lserver?>/blog/<?=$r_blog["permalink"]?>'>
|
|
|
|
|
+ <div class='entry blog_row'>
|
|
|
|
|
+ <table>
|
|
|
|
|
+ <tr>
|
|
|
|
|
+<?php
|
|
|
|
|
+ if (mysqli_num_rows($q_image) > 0){
|
|
|
|
|
+ $r_image = mysqli_fetch_array($q_image);
|
|
|
|
|
+?>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <img alt='<?=text($con, $r_blog["title"], $lang)?>' title='<?=text($con, $r_blog["title"], $lang)?>' src='<?=$lserver?>/img/blog/x2/<?=$r_image["image"]?>'/>
|
|
|
|
|
+ </td>
|
|
|
|
|
+<?php
|
|
|
|
|
+ }
|
|
|
|
|
+?>
|
|
|
|
|
+ <td>
|
|
|
|
|
+ <h4><?=text($con, $r_blog["title"], $lang)?></h4>
|
|
|
|
|
+ <?=cut_text(text($con, $r_project["header"], $lang), 165, "TR#Leer mas", $lserver . "/blog/" . $r_blog["permalink"])?>
|
|
|
|
|
+ </td>
|
|
|
|
|
+ </tr>
|
|
|
|
|
+ </table>
|
|
|
|
|
+ </div> <!-- .entry -->
|
|
|
|
|
+ </a>
|
|
|
|
|
+<?php
|
|
|
|
|
+ }
|
|
|
|
|
+?>
|
|
|
|
|
+ </div> <!-- .section -->
|
|
|
|
|
+ </div> <!-- #content_cell_content -->
|
|
|
|
|
+ </div> <!-- .content_row -->
|
|
|
</div> <!-- #content -->
|
|
</div> <!-- #content -->
|
|
|
<?php
|
|
<?php
|
|
|
include $doc_root . "footer.php";
|
|
include $doc_root . "footer.php";
|