PageRenderTime 67ms CodeModel.GetById 37ms RepoModel.GetById 0ms app.codeStats 0ms

/old/v2/src/index.php

https://github.com/YouWoTMA/brweb
PHP | 78 lines | 72 code | 6 blank | 0 comment | 0 complexity | cb258966fd8b377f74a867d7efd6bdbe MD5 | raw file
  1. <?php
  2. include_once "global.php";
  3. $deph = "";
  4. function content(){
  5. include("header.php");
  6. ?>
  7. <div id="wrapper">
  8. <div id="aboutme">
  9. <div class="separator"></div>
  10. <div class="photos" id="photos">
  11. <div class="photo photo-2" id="photo-2">
  12. <img class="proto-img" src="<?php statico("img/avatar3.jpg"); ?>" alt="David Bengoa" />
  13. </div>
  14. <div class="photo photo-3" id="photo-3">
  15. <img class="proto-img" src="<?php statico("img/avatar1.jpg"); ?>" alt="David Bengoa" />
  16. </div>
  17. <div class="photo photo-1" id="photo-1">
  18. <img class="proto-img" src="<?php statico("img/avatar4.jpg"); ?>" alt="David Bengoa" />
  19. </div>
  20. </div>
  21. <div id="about-me-right">
  22. <h2><?php t("Sobre mí"); ?></h2>
  23. <div id="about-me-text">
  24. <p><?php t("Soy un emprendedor y programador, ademas de estudiante de Ingeniería del Software."); ?> <?php t("Desde que nací, la tierra ha completado"); ?> <span id="date">20.00000000</span> <?php t("revoluciones alrrededor del Sol. Vivo en Málaga."); ?></p>
  25. <p><?php t("Me gusta crear cosas."); ?></p>
  26. <p><?php t("Soy un fan del software libre y los estándares abiertos. He colaborado con varios proyectos de software libre, con los que he aprendido mas de lo imaginable."); ?></p>
  27. <p><?php t("En cuanto a hobbys, a parte de lo típico (leer, viajar, música y películas) me gusta hacer snowboard."); ?></p>
  28. <p id="otherprofiles">
  29. <?php t("Sigue en contacto");?>!
  30. <a class="mail" target="_blank" href="mailto:david@bengoarocandio.com">E-mail</a>
  31. <a class="last" target="_blank" href="http://last.fm/user/YouWoTMA">Last-fm</a>
  32. <a class="face" target="_blank" href="http://facebook.com/bengoa">Facebook</a>
  33. <a class="tuen" target="_blank" href="<?php statico("tuenti"); ?>">Tuenti</a>
  34. <a class="pcpl" target="_blank" href="http://picplz.com/user/dvdbng/">Picplz</a>
  35. <a class="blog" target="_blank" href="http://hoyga.com">Blog</a>
  36. <a class="redd" target="_blank" href="http://www.reddit.com/user/bengoa">Reddit</a>
  37. <a class="gith" target="_blank" href="http://github.com/YouWoTMA/">Github</a>
  38. <a class="dias" target="_blank" href="https://joindiaspora.com/people/7765">Diaspora</a>
  39. <a class="plus" target="_blank" href="https://plus.google.com/u/0/106806585578290774069">Google+</a>
  40. <a class="four" target="_blank" href="https://foursquare.com/dvdbng">Foursquare</a>
  41. <a class="twit" target="_blank" href="http://twitter.com/dvdbng">Twitter</a>
  42. </p>
  43. </div>
  44. </div>
  45. <div class="separator"></div>
  46. </div>
  47. <div id="twitter">
  48. <div id="twitter-header">
  49. <h2 id="twitter-header-text"><?php t("Ultimos tweets"); ?></h2>
  50. </div>
  51. <div id="tweets"></div>
  52. </div>
  53. <div id="blog">
  54. <div id="blog-header">
  55. <h2 id="blog-header-text"><?php t("Ultimas entradas de mi blog"); ?></h2>
  56. </div>
  57. </div>
  58. <script type="text/javascript">
  59. var twt_logo_img = "<?php statico("img/pajaro.png"); ?>";
  60. </script>
  61. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
  62. <script type="text/javascript" src="<?php statico("js/global.js"); ?>"></script>
  63. <script type="text/javascript" src="<?php is_cli()?statico("prefetch.php"):print("data:text/js;urlencode,"); ?>"></script>
  64. </div>
  65. <div id="footer">
  66. &copy; 2011 David Bengoa Rocandio<br/>
  67. <a href="https://github.com/YouWoTMA/brweb"><?php t("Código fuente de la pagina (GPL)"); ?></a>
  68. </div>
  69. <?php
  70. }
  71. include_once "base.php";
  72. ?>