{% extends "base.html" %}

{% block content %}
<div class="flex flex-col pt-8 mx-auto">
  <p class="prose text-white">
    If you have any questions about my projects or just want to talk, feel
    free to reach out to me.
  </p>

  <div class="w-full pt-8">
    <table class="text-white w-full">
      <tr>
        <td>Fediverse</td>
        <td>
            <a class="text-indigo-400" href="https://{{ config.extra.fediverse_instance}}/{{ config.extra.fediverse_username }}">@{{ config.extra.fediverse_username }}@{{ config.extra.fediverse_instance }}</a>
        </td>
      </tr>
      <tr>
        <td>E-Mail</td>
        <td>{{ config.extra.email_user }} [a with a circle] {{ config.extra.email_domain }}</td>
      </tr>
      <tr>
        <td />
        <td>
          Please use my <a class="text-indigo-400" href="https://{{ config.extra.gpg_key_url }}">GPG public key</a>
        </td>
      </tr>
      <tr>
        <td>GitHub</td>
        <td><a class="text-indigo-400" href="https://github.com/{{ config.extra.github_username }}">{{ config.extra.github_username }}</a></td>
      </tr>
      <tr>
        <td>Codeberg</td>
        <td><a class="text-indigo-400" href="https://codeberg.org/{{ config.extra.codeberg_username }}">{{ config.extra.codeberg_username }}</a>
        </td>
      </tr>
      <tr>
        <td>Gitea</td>
        <td><a class="text-indigo-400" href="https://{{ config.extra.gitea_url }}/{{ config.extra.gitea_username }}">{{ config.extra.gitea_username }}</a></td>
      </tr>
    </table>
  </div>
</div>

{% endblock %}