aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/blog/partials/base.html5
-rw-r--r--templates/blog/partials/sidebar.html4
-rw-r--r--templates/blog/site_policy.html2
-rw-r--r--templates/dev_status/home.html92
4 files changed, 50 insertions, 53 deletions
diff --git a/templates/blog/partials/base.html b/templates/blog/partials/base.html
index d55abcd3..207d29a1 100644
--- a/templates/blog/partials/base.html
+++ b/templates/blog/partials/base.html
@@ -158,10 +158,5 @@
<script src="{% static 'js/oneko.js' %}"></script>
{% endif %}
{% block scripts %} {% endblock %}
- <!-- Google tag (gtag.js) -->
- <script
- async
- src="https://www.googletagmanager.com/gtag/js?id=G-72XTC500FR"
- ></script>
</body>
</html>
diff --git a/templates/blog/partials/sidebar.html b/templates/blog/partials/sidebar.html
index 81562aee..d638f3b4 100644
--- a/templates/blog/partials/sidebar.html
+++ b/templates/blog/partials/sidebar.html
@@ -189,7 +189,7 @@
</a>
</span>
</li>
- <li>
+ {% comment %} <li>
<span>
<img src="{% static 'images/site/icons/globe.gif' %}" alt="Mastodon" border="0" style="padding: 2px 5px; height: 20px; width: auto;">
</span>
@@ -197,7 +197,7 @@
<a rel="me" href="https://mastodon.social/@selch">Mastodon</a>
<img width="11" height="11" src="https://img.icons8.com/glyph-neue/20/d2baff/external-link.png" alt="external-link"/ style="height: 11px; width: 11px; position: relative; top: -1px;">
</span>
- </li>
+ </li> {% endcomment %}
</ul>
</div>
diff --git a/templates/blog/site_policy.html b/templates/blog/site_policy.html
index d03a81dc..683e2c07 100644
--- a/templates/blog/site_policy.html
+++ b/templates/blog/site_policy.html
@@ -2,7 +2,7 @@
<h2 class="mtctitem">I see cookies! Wait, Do you track me?</h2>
<p>This site uses cookies to store information on your computer. These cookies are required to enable the login functionality of the site. They are not used for tracking purposes.</p>
-<p><b>Update:</b> W.E.F May 27, 2023, this site will employ <a href="https://analytics.google.com/analytics/web/">Google Analytics</a> to track user activity. Also Cloudflare's Browser Insights will be used to track performance metrics.</p>
+<p><del><b>Update:</b> W.E.F May 27, 2023, this site will employ <a href="https://analytics.google.com/analytics/web/">Google Analytics</a> to track user activity. Also Cloudflare's Browser Insights will be used to track performance metrics.</del> (Redacted! No tracking is involved. Enjoy your privacy!) </p>
<h2 class="mtsbitem">Also, do not sell my data!</h2>
<p>Any personal information you provide here will be kept confidential and will not be sold, rented, loaned, or otherwise disclosed. Any information you provide will be held with the utmost care, and will not be used in ways that you have not consented to. If you have any questions, please feel free to contact me at <a href="mailto:[email protected]">[email protected]</a>.</p>
diff --git a/templates/dev_status/home.html b/templates/dev_status/home.html
index 6c494fe5..1863434b 100644
--- a/templates/dev_status/home.html
+++ b/templates/dev_status/home.html
@@ -1,53 +1,55 @@
{% extends 'blog/partials/base.html' %} {% block content %}
<div class="main">
+ <div style="position: relative; top: 40px;">
+ <table style="margin: 0 auto; position: relative; top: 120px;">
+ <form action="" method="get">
+ <tr>
+ <td>
+ <p> Search &amp; Filter: &emsp;</p>
+ </td>
+ <td>
+ <input type="text" name="search" placeholder="Search Term" value="{{ search }}" autocomplete="off">
+ </td>
+ <td>
+ <select name="items">
+ <option value="10" {% if items == 10 %}selected{% endif %}>10</option>
+ <option value="25" {% if items == 25 %}selected{% endif %}>25</option>
+ <option value="50" {% if items == 50 %}selected{% endif %}>50</option>
+ <option value="100" {% if items == 100 %}selected{% endif %}>100</option>
+ </select>
+ </td>
+ <td>
+ <select name="sort">
+ <option value="full_name" {% if sort == 'full_name' %}selected{% endif %}>Name</option>
+ <option value="created" {% if sort == 'created' %}selected{% endif %}>Created</option>
+ <option value="updated" {% if sort == 'updated' %}selected{% endif %}>Updated</option>
+ <option value="pushed" {% if sort == 'pushed' %}selected{% endif %}>Pushed</option>
+ <option value="stars" {% if sort == 'stars' %}selected{% endif %}>Stars</option>
+ </select>
+ </td>
+ <td>
+ <select name="direction">
+ <option value="asc" {% if direction == 'asc' %}selected{% endif %}>Ascending</option>
+ <option value="desc" {% if direction == 'desc' %}selected{% endif %}>Descending</option>
+ </select>
+ </td>
+ <td>
+ <input type="submit" value="Go" style="position: relative; top: -2px;">
+ </td>
+ </tr>
+ </form>
+ </table>
+ </div>
<div class="area">
{% load static %}
{% load times %}
- <div style="background-image: url({% static 'images/site/repositories.png' %}); width: 720px; height: 173px; background-repeat: no-repeat; background-position: center;">
- {% comment %} Search and Filter {% endcomment %}
- <table style="margin: 0 auto; position: relative; top: 120px;">
- <form action="" method="get">
- <tr>
- <td>
- <p> Search &amp; Filter: &emsp;</p>
- </td>
- <td>
- <input type="text" name="search" placeholder="Search Term" value="{{ search }}" autocomplete="off">
- </td>
- <td>
- <select name="items">
- <option value="10" {% if items == 10 %}selected{% endif %}>10</option>
- <option value="25" {% if items == 25 %}selected{% endif %}>25</option>
- <option value="50" {% if items == 50 %}selected{% endif %}>50</option>
- <option value="100" {% if items == 100 %}selected{% endif %}>100</option>
- </select>
- </td>
- <td>
- <select name="sort">
- <option value="full_name" {% if sort == 'full_name' %}selected{% endif %}>Name</option>
- <option value="created" {% if sort == 'created' %}selected{% endif %}>Created</option>
- <option value="updated" {% if sort == 'updated' %}selected{% endif %}>Updated</option>
- <option value="pushed" {% if sort == 'pushed' %}selected{% endif %}>Pushed</option>
- <option value="stars" {% if sort == 'stars' %}selected{% endif %}>Stars</option>
- </select>
- </td>
- <td>
- <select name="direction">
- <option value="asc" {% if direction == 'asc' %}selected{% endif %}>Ascending</option>
- <option value="desc" {% if direction == 'desc' %}selected{% endif %}>Descending</option>
- </select>
- </td>
- <td>
- <input type="submit" value="Go" style="position: relative; top: -2px;">
- </td>
- </tr>
- </form>
- </table>
- </div>
+ <div style="background-image: url({% static 'images/site/repositories.png' %}); width: 100%; height: auto; background-repeat: no-repeat; background-position: center; background-size: cover; margin-top: -20px; padding: 100px 0px;"></div>
</div>
<hr>
- <div class='repositories' style="width: 720px;">
- <table style="width=720px; margin: 0 auto; table-layout: fixed;">
+ {% comment %} Search and Filter {% endcomment %}
+
+ <div class='repositories'>
+ <table style="width=100%; margin: 0 auto; table-layout: fixed;">
{% for repo in repos %}
<tr>
<td><a href="{% url 'dev_status:repo' repo.name %}">
@@ -55,8 +57,8 @@
</a>
</td>
<td>
- <p style="font-size: 20px; font-weight: bold;"><a href="{% url 'dev_status:repo' repo.name %}">{{ repo.name }}</a></p>
- <p style="font-size: 15px;">{{ repo.description }}</p>
+ <p style="font-size: 14px; font-weight: bold;"><a href="{% url 'dev_status:repo' repo.name %}">{{ repo.name }}</a></p>
+ <p>{{ repo.description }}</p>
</td>
</tr>