/index.php

https://bitbucket.org/muhilvannan/my-website · PHP · 222 lines · 166 code · 55 blank · 1 comment · 0 complexity · cd097a8643bc47236752000a719984ec MD5 · raw file

  1. <?php
  2. include_once('includes/header.php');
  3. ?>
  4. <title>Muhil</title>
  5. <?php
  6. include_once('includes/header-body.php');
  7. ?>
  8. <?php
  9. include_once('includes/scripts.php');
  10. ?>
  11. <div class="container">
  12. <header>
  13. <h1>
  14. <a href="/"> A Geek's Profile </a>
  15. </h1>
  16. <!-- <h2>
  17. Neelamuhilvannan Mayavannan
  18. </h2> -->
  19. </header>
  20. <div class="shapesContainer">
  21. <div class="shape transition" id="meDiv">
  22. <h1> Me </h1>
  23. </div>
  24. <div class="shape transition " id="skillsDiv">
  25. <h1> Skills </h1>
  26. </div>
  27. <div class="shape transition" id="contactDiv">
  28. <h1> Contact </h1>
  29. </div>
  30. <div class="shape" id="portfolioDiv">
  31. <h1> Timeline </h1>
  32. </div>
  33. </div>
  34. <div id="skills" style="display:none;">
  35. <div class="close" id="skillsClose"></div>
  36. <article>
  37. <h2>
  38. What I Do Best
  39. </h2>
  40. <!-- <h2>
  41. Neelamuhilvannan Mayavannan
  42. </h2> -->
  43. </article>
  44. </div>
  45. <div id="me" style="display:none;">
  46. <div class="close" id="meClose"></div>
  47. <article>
  48. <h2>
  49. About me
  50. </h2>
  51. <!-- <h2>
  52. Neelamuhilvannan Mayavannan
  53. </h2> -->
  54. <p>I am a self professed geek about everything that computes. I am someone who you would find opening up a computer setting up systems and servers.
  55. I love talking to people and scoping out what they want from a web system, and how such a system can provide value to their business.
  56. With a distinction in Computer Science as a undergraduate degree and a masters in Strategic Information Systems complemented with three years experience in systems analysis and development, I am your go to guy if you want a value adding IT strategy in place for your business.
  57. The timeline of stuff i have done over the years would show you my varied capabilities and achievements </p>
  58. </article>
  59. </div>
  60. <div id="portfolio" style="display:none;">
  61. <div class="close" id="portfolioClose"></div>
  62. <article>
  63. <h2>
  64. Timeline of Achievements
  65. </h2>
  66. <!-- <h2>
  67. Neelamuhilvannan Mayavannan
  68. </h2> -->
  69. <iframe src='http://embed.verite.co/timeline/?source=0Ar7LhOa--4jidHJJdWNQUzk3V3NPZHh6c1FBNDlQcVE&font=Bevan-PotanoSans&maptype=toner&lang=en&height=650&start_at_end=true&start_zoom_adjust=4' width='100%' height='650' frameborder='0'></iframe>
  70. </article>
  71. </div>
  72. <div id="contact" style="display:none;">
  73. <div class="close" id="contactClose"></div>
  74. <article>
  75. <h2>
  76. Contact me
  77. </h2>
  78. <!-- <h2>
  79. Neelamuhilvannan Mayavannan
  80. </h2> -->
  81. </article>
  82. <p> Drop me a email at
  83. <a href="mailto:muhil@outlook.com" > muhil@outlook.com </a>
  84. </p>
  85. <p>
  86. Network with me
  87. <a href="http://uk.linkedin.com/in/neelamuhilvannan">
  88. <img src="http://www.linkedin.com/img/webpromo/btn_myprofile_160x33.png" width="160" height="33" border="0" alt="View Neela Muhil Vannan Mayavannan's profile on LinkedIn">
  89. </a>
  90. </p>
  91. </div>
  92. <footer>
  93. <h2> Design and coding by Neelamuhilvannan Mayavannan </h2>
  94. </footer>
  95. </div>
  96. <script>
  97. $(document).ready(function() {
  98. // other code here
  99. $( document ).tooltip();
  100. $("#meDiv").click(function(){
  101. $("#me").toggle('slide', function() {
  102. $(".shapesContainer").toggle('slideRight');
  103. });
  104. });
  105. $("#meClose").click(function(){
  106. $("#me").toggle('slide', function() {
  107. $(".shapesContainer").toggle('slideRight');
  108. });
  109. });
  110. $("#portfolioDiv").click(function(){
  111. $("#portfolio").toggle('slide', function() {
  112. $(".shapesContainer").toggle('slideRight');
  113. });
  114. });
  115. $("#portfolioClose").click(function(){
  116. $("#portfolio").toggle('slide', function() {
  117. $(".shapesContainer").toggle('slideRight');
  118. });
  119. });
  120. $("#skillsDiv").click(function(){
  121. $("#skills").toggle('slide', function() {
  122. $(".shapesContainer").toggle('slideRight');
  123. });
  124. });
  125. $("#skillsClose").click(function(){
  126. $("#skills").toggle('slide', function() {
  127. $(".shapesContainer").toggle('slideRight');
  128. });
  129. });
  130. $("#contactDiv").click(function(){
  131. $("#contact").toggle('slide', function() {
  132. $(".shapesContainer").toggle('slideRight');
  133. });
  134. });
  135. $("#contactClose").click(function(){
  136. $("#contact").toggle('slide', function() {
  137. $(".shapesContainer").toggle('slideRight');
  138. });
  139. });
  140. });
  141. </script>
  142. <?php
  143. include_once('includes/footer.php');
  144. ?>