home.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {% extends "/html/base.html" %}
  2. {% block content %}
  3. <a href="https://github.com/harlanji/tinydatacenter/tree/master/harlanji.com"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
  4. <h1>{{ post.contact.name }}</h1>
  5. <p>Welcome to {{post.contact.first-name}}'s official public profile.</p>
  6. <hr>
  7. <ul>
  8. {% for nav-page in navbar-pages %}
  9. <li {%ifequal page.uri nav-page.uri %} class="active" {% endifequal %}>
  10. <a href="{{nav-page.uri}}">{{nav-page.title}}</a>
  11. </li>
  12. <li {% if archives %} class="active" {% endif %}><a href="{{archives-uri}}">Writing and Opinions</a></li>
  13. {% endfor %}
  14. </ul>
  15. <hr>
  16. <p>Take at least once daily:</p>
  17. <iframe width="560" height="315" src="{{ post.tao-yt-uri }}" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
  18. <p>Contact: {{post.contact.email}} or {{post.contact.phone-number}}.</p>
  19. <p>I prefer to meet up; Facetime is next best; email is next best; texting for quick messages is aiight.</p>
  20. <p><small>If I "unfriended" you on Facebook it's because I'm closing it down!</small></p>
  21. <p>Hosted in a <a href="https://tinydatacenter.com">Tiny DataCenter</a></p>
  22. {% endblock %}