diff options
| author | 2021-03-23 17:17:22 +0800 | |
|---|---|---|
| committer | 2021-03-23 18:35:19 +0800 | |
| commit | 7de2959402a048652bf6d4ec8e3bec1172bb11e8 (patch) | |
| tree | fb4c7397ef262ca60e6aa90315dc1ec9371398fe /pydis_site/templates | |
| parent | Style <pre> tag backgrounds same as <code>. (diff) | |
Remove Github metadata feature.
This feature is still under implementation debate, so it will be further
discussed in another issue and implemeneted in a future PR.
Diffstat (limited to 'pydis_site/templates')
| -rw-r--r-- | pydis_site/templates/content/article.html | 18 | 
1 files changed, 0 insertions, 18 deletions
diff --git a/pydis_site/templates/content/article.html b/pydis_site/templates/content/article.html index fcb29f32..bcdee95a 100644 --- a/pydis_site/templates/content/article.html +++ b/pydis_site/templates/content/article.html @@ -34,29 +34,11 @@          <div class="content">              <div class="container">                  <h1 class="title">{{ article.metadata.title }}</h1> -                <p class="subtitle is-size-6"><strong>Last modified:</strong> {{ github_data.last_modified }}</p>                  <div class="columns is-variable is-8">                      <div class="column is-two-thirds">                          {{ article.article|safe }}                      </div>                      <div class="column"> -                        <div class="card"> -                            <div class="card-header"> -                                <p class="card-header-title">Contributors</p> -                            </div> -                            <div class="card-content"> -                                {% if github_data.contributors|length %} -                                    <div class="tags"> -                                        {% for user, profile_url in github_data.contributors.items %} -                                            <span class="tag"><a href="{{ profile_url }}">{{ user }}</a></span> -                                        {% endfor %} -                                    </div> -                                {% else %} -                                <p>N/A</p> -                                {% endif %} -                            </div> -                        </div> -                          {% if relevant_links|length > 0 %}                          <div class="box">                              <p class="menu-label">Relevant links</p>  |