about.ejs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <%- //partial('_partial/about-author') %>
  2. <div class="container bottom-spacer">
  3. <div class="row up-spacer bottom-spacer">
  4. <div class="col-12 text-center">
  5. <h1 class="display-3" style="margin-bottom: 0px;">
  6. About
  7. </h1>
  8. </div>
  9. </div>
  10. <div class="row">
  11. <div class="col-12">
  12. <p class="lead">
  13. My name is James Peret, and I'm a designer, programmer and filmmaker from from São Paulo, Brazil.
  14. </p>
  15. <p>
  16. I live in a remote place near the big city and I like to spend my time creating things. In the past few years I have been working with programming systems using node.js and designing games with Unity3d.
  17. </p>
  18. <p>
  19. During the last 20 years I have worked in many different types of projects. I have worked with video editing, filmaking, webdesign, software development, game design and industrial design.
  20. </p>
  21. <p>
  22. When I'm not coding, I'm playing video games, watching movies and 3d printing stuff. I like to play strategy, survival and FPS games. I have watched thousands of movies. Before working with games I was working with video and I wanted to be a movie director. I have directed lots of short movies and wrote some movie scripts.
  23. </p>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="container-fluid bg-light">
  28. <div class="row bottom-spacer" style="padding-top: 50px">
  29. <div class="col-12 text-center">
  30. <h2 class="display-4" style="margin-bottom: 0px;">
  31. Around the web
  32. </h2>
  33. <h4><small class="text-muted">Links to all my stuff</small></h4>
  34. </div>
  35. </div>
  36. <% var i = 0 %>
  37. <div class="row" style="padding-bottom: 50px">
  38. <div class="col-12 text-center">
  39. <% config.links.forEach(function(link) { %>
  40. <%- partial('_partial/social-icons', {link: link.link, icon: link.icon}) %>
  41. <% if(i == 12) { %><br><% } %>
  42. <% i += 1 %>
  43. <% }) %>
  44. </div>
  45. </div>
  46. </div>
  47. <%- partial('_partial/contact-form') %>