Compare commits

..

No commits in common. "49afbfa931404471f92a61471ba1d8e682772ed7" and "18abed555ee1b55ca3447c7f80aa77c2f98d8d7d" have entirely different histories.

View File

@ -1,15 +1,13 @@
<div id="aboutme"> <div id="aboutme">
{% if AVATAR %} {% if AVATAR %}
<p> <p>
<img width="100%" class="img-thumbnail" src="{{ SITEURL }}/{{ AVATAR }}"/> <img width="100%" class="img-thumbnail" src="{{ SITEURL }}/{{ AVATAR }}"/>
</p> </p>
{% endif %} {% endif %}
{% if ABOUT_ME %} {% if ABOUT_ME %}
<p class="text-center"> <p>
<strong>{{ AUTHOR }}</strong> <strong class="text-center">{{ AUTHOR }}</strong><br/>
</p> {{ ABOUT_ME }}
<p> </p>
{{ ABOUT_ME }} {% endif %}
</p>
{% endif %}
</div> </div>