home.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. $bodyclasses = 'home page';
  3. $description = 'I am a Research Associate at the University of Cambridge, but I also do other things.';
  4. $keywords = 'music, learning, tabletop, research, the open university, university of cambridge, isaac physics, reactable';
  5. $twitter_image = 'images/colopic.jpg';
  6. ?>
  7. <?=i('_header')?>
  8. <h2 class="py-2 text-center">I do things.</h2>
  9. <style>
  10. .embed-container {
  11. position: relative;
  12. padding-bottom: 56.25%;
  13. height: 0;
  14. overflow: hidden;
  15. max-width: 100%;
  16. }
  17. .embed-container iframe,
  18. .embed-container object,
  19. .embed-container embed {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. width: 100%;
  24. height: 100%;
  25. }
  26. </style>
  27. <div class='embed-container -mb-8'>
  28. <iframe loading="lazy" src='https://www.youtube.com/embed/videoseries?list=PL70paWUyPRgqhqxG0ShlROn1eSHlekhB_' frameborder='0' allowfullscreen></iframe>
  29. </div>
  30. <h2 class="py-2 text-center">What can I do for you?</h2>
  31. <div id="home_bars" class="flex flex-row">
  32. <a href="<?=$baseurl?>research" class="research flex-1"><span>Research</span></a>
  33. <a href="<?=$baseurl?>development" class="development flex-1"><span>Development</span></a>
  34. <a href="<?=$baseurl?>writing" class="writing flex-1"><span>Technical Writing</span></a>
  35. <a href="<?=$baseurl?>contact" class="other flex-1"><span>Something else</span></a>
  36. </div>
  37. <?=i('_footer')?>