aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2021-06-05 22:03:02 -0400
committerThedro Neely <thedroneely@gmail.com>2021-06-05 22:03:02 -0400
commit3d1b762176f412766afca0b269158bd7b7c94a76 (patch)
tree27b26ae4376758ac4b527bb9ca76ae92f4dc69f2
parent9b53e8c0d5002a808d1eea9485041e8f38259c65 (diff)
downloadthedroneely.com-3d1b762176f412766afca0b269158bd7b7c94a76.tar.gz
thedroneely.com-3d1b762176f412766afca0b269158bd7b7c94a76.tar.bz2
thedroneely.com-3d1b762176f412766afca0b269158bd7b7c94a76.zip
app/views: Remove unused underline class
-rw-r--r--app/views/index.view.php4
-rw-r--r--app/views/partials/footer.php12
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/single.html2
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/summary.html2
4 files changed, 10 insertions, 10 deletions
diff --git a/app/views/index.view.php b/app/views/index.view.php
index a555a00..b7636c1 100644
--- a/app/views/index.view.php
+++ b/app/views/index.view.php
@@ -62,7 +62,7 @@
<input type="checkbox" id="posts" class="marginnote-toggle">
<span class="marginnote rightnote">
- See an archive of all posts <a class="underline" href="/posts/archive/">here.</a>
+ See an archive of all posts <a href="/posts/archive/">here.</a>
</span>
<?php
@@ -87,7 +87,7 @@
<input type="checkbox" id="projects" class="marginnote-toggle">
<span class="marginnote rightnote">
- See an archive of all projects <a class="underline" href="/projects/archive/">here.</a>
+ See an archive of all projects <a href="/projects/archive/">here.</a>
</span>
<?php
diff --git a/app/views/partials/footer.php b/app/views/partials/footer.php
index b43980c..912a08f 100644
--- a/app/views/partials/footer.php
+++ b/app/views/partials/footer.php
@@ -7,17 +7,17 @@
<p class="has-text-grey-dark is-size-7">
- <a class="underline" href="/posts/rss.xml">RSS Feed</a> |
+ <a href="/posts/rss.xml">RSS Feed</a> |
- <a class="underline" href="/resume">Resume</a> |
+ <a href="/resume">Resume</a> |
- <a class="underline" rel="me" href="https://gitlab.com/tdro">Gitlab</a> |
+ <a rel="me" href="https://gitlab.com/tdro">Gitlab</a> |
- <a class="underline" rel="me" href="https://github.com/tdro">Github</a> |
+ <a rel="me" href="https://github.com/tdro">Github</a> |
- <a class="underline" href="/analytics">Analytics</a> |
+ <a href="/analytics">Analytics</a> |
- <a class="underline" href="#">Back To Top</a>
+ <a href="#">Back To Top</a>
</p>
diff --git a/generators/hugo/themes/tdro/layouts/_default/single.html b/generators/hugo/themes/tdro/layouts/_default/single.html
index 0632433..51c0c7b 100644
--- a/generators/hugo/themes/tdro/layouts/_default/single.html
+++ b/generators/hugo/themes/tdro/layouts/_default/single.html
@@ -16,7 +16,7 @@
<aside class="subtitle is-6 has-text-grey-dark">
{{- partial "page-meta.html" . -}}
<br>
- <span class="isso-comments-counter"><a class="underline has-text-grey-dark focus-link" title="Jump to Comments" href="#isso-thread">0 Comments</a> ·</span>
+ <span class="isso-comments-counter"><a class="has-text-grey-dark focus-link" title="Jump to Comments" href="#isso-thread">0 Comments</a> ·</span>
{{- partial "read-time.html" . -}} · {{ .FuzzyWordCount }} words
</aside>
diff --git a/generators/hugo/themes/tdro/layouts/_default/summary.html b/generators/hugo/themes/tdro/layouts/_default/summary.html
index a019a7b..6b7260a 100644
--- a/generators/hugo/themes/tdro/layouts/_default/summary.html
+++ b/generators/hugo/themes/tdro/layouts/_default/summary.html
@@ -18,7 +18,7 @@
</header>
<p class="article__summary">{{ if .Params.summary }}{{ truncate 75 "..." .Params.summary }}{{ else }}{{ truncate 75 "..." .Summary}}{{ end }}</p>
- <p><a class="underline" href='{{ .Permalink }}'>Continue reading ({{ .FuzzyWordCount }} words)</a></p>
+ <p><a href='{{ .Permalink }}'>Continue reading ({{ .FuzzyWordCount }} words)</a></p>
</article>
</div>