about.html 673 B

1234567891011121314151617181920212223
  1. {% extends "layout.html" %}
  2. {% import 'utils.html' as utils %}
  3. {% block header %}
  4. {% endblock %}
  5. {% block content %}
  6. <div style="width:90%;max-width: 720px;margin:40px auto;">
  7. {% include "header.html" %}
  8. <div class="h-card" style="display:flex">
  9. <div style="flex:initial;width:200px;min-width:50px;">
  10. <a class="u-url u-uid" href="{{ config.ID }}"><img class="u-photo" src="{{ me.icon.url }}" style="width:100%;max-width:200px;border-radius:5px;"></a>
  11. </div>
  12. <data class="p-name" value="{{ config.USERNAME }}">
  13. <div style="flex:1;padding-left:30px;">
  14. {{ text | safe }}
  15. <div class="p-note" style="margin:20px 0;">{{ me.summary }}</div>
  16. </div>
  17. </div>
  18. </div>
  19. {% endblock %}