12345678910111213141516171819202122232425262728293031323334353637 |
- {% extends "/html/base.html" %}
- {% block content %}
- <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>
- <h1>{{ post.contact.name }}</h1>
- <p>Welcome to {{post.contact.first-name}}'s official public profile.</p>
- <hr>
- <ul>
- {% for nav-page in navbar-pages %}
- <li {%ifequal page.uri nav-page.uri %} class="active" {% endifequal %}>
- <a href="{{nav-page.uri}}">{{nav-page.title}}</a>
- </li>
- <li {% if archives %} class="active" {% endif %}><a href="{{archives-uri}}">Writing and Opinions</a></li>
- {% endfor %}
- </ul>
- <hr>
- <p>Take at least once daily:</p>
- <iframe width="560" height="315" src="{{ post.tao-yt-uri }}" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
- <p>Contact: {{post.contact.email}} or {{post.contact.phone-number}}.</p>
- <p>I prefer to meet up; Facetime is next best; email is next best; texting for quick messages is aiight.</p>
- <p><small>If I "unfriended" you on Facebook it's because I'm closing it down!</small></p>
- <p>Hosted in a <a href="https://tinydatacenter.com">Tiny DataCenter</a></p>
- {% endblock %}
|