summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--resources/views/about.blade.php12
-rw-r--r--resources/views/topicindex.blade.php6
-rw-r--r--resources/views/topicpopular.blade.php2
3 files changed, 13 insertions, 7 deletions
diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php
index dd1d848..4d5e2fb 100644
--- a/resources/views/about.blade.php
+++ b/resources/views/about.blade.php
@@ -11,31 +11,31 @@ html {
<div class="card">
<h1 class="card-header">
- More about <strong>{{ env('APP_NAME') }}</strong>
+ About <strong>{{ env('APP_NAME') }}</strong>
</h1>
<div class="card-body">
<p class="card-text">
- This website index and curates automatically "good" articles from Wikipedia.
+ This website automatically indexes and curates "good" articles from Wikipedia.
<br>
<br>
-It does so by fetching the <a href="https://news.ycombinator.com">{!! file_get_contents(public_path() . "/img/y-combinator.svg") !!} Hacker News (HN)</a> API and checking for a specific threshold. The idea is that an article is good, when it is posted to and discussed on HN. And it is even better when it is more often posted and/or sparked a great discussion. To get the best out of it this website links back to every worthy discussion, hence the name.
+It does so by fetching the <a href="https://news.ycombinator.com">{!! file_get_contents(public_path() . "/img/y-combinator.svg") !!} Hacker News (HN)</a> API and checking against a specific threshold. The idea is that an article is good when it gets posted to and discussed on HN. And it is even better when it is posted more often and/or sparks a great discussion. To get the best out of it this website links back to every worthy discussion, hence the name.
<br>
<br>
-Furthermore, it structures the articles and categorizes them in topics. You can find the respective topics above the article, or <a href="{{ route('topic_index') }}">click here</a> to see all topics alphabetically listed and <a href="{{ route('popular_topics') }}">here to see</a> them sorted by popularity. The topics above the article (those little blue pills) are clickable and link to other articles with the same topic. Those topics are not verbatim copied from the Wikipedia page, but created a custom way. And I may be biased, but I find them far more useful than the categories Wikipedia thinks those articles are in. "English poetry in 1751"? Yeah, sure, that's <em>very</em> specific.
+Furthermore, the site structures and categorizes articles by topic. Above each article you'll find those small pink pills and yes, they're clickable. Click here to see all topics <a href="{{ route('topic_index') }}">listed alphabetically</a> and here to see them <a href="{{ route('popular_topics') }}">sorted by popularity</a>. Those topics are neither copied verbatim from the Wikipedia page, nor are they AI-generated (though they are inspired by WikiProjects). And I may be biased, but I find them far more useful than Wikipedia's official categories. "English poetry in 1751"? Yeah, sure, that's <em>very</em> specific.
<br>
<br>
-For starters I recommend to start with the <a href="{{ route('popular') }}">most popular articles</a> and then go through the stack, or browse the <a href="{{ route('popular_topics') }}">most popular topics</a>. If you are a seasoned reader consider the <a href="{{ route('new') }}">'New' site</a> for newly added articles or the <a href="{{ route('random') }}">'Random' button</a> above, which brings some real gems to light.
+For starters, I recommend beginning with the <a href="{{ route('popular') }}">most popular articles</a> and then working through the stack, or browsing the <a href="{{ route('popular_topics') }}">most popular topics</a>. If you are a seasoned reader, consider the <a href="{{ route('new') }}">New page</a> for newly added articles, or hit the <a href="{{ route('random') }}">Random button</a> above, which brings some real gems to light.
<br>
<br>
-If you have feedback, want to report a bug or just say hello, hit me up by e-mail: <em>hi @ thisdomain without the www .com</em>
+If you have feedback, want to report a bug, or just say hello, hit me up by e-mail: <em>hi @ thisdomain without the www .com</em>
<br>
<br>
diff --git a/resources/views/topicindex.blade.php b/resources/views/topicindex.blade.php
index 9c5b9c4..051e10d 100644
--- a/resources/views/topicindex.blade.php
+++ b/resources/views/topicindex.blade.php
@@ -29,6 +29,12 @@ html {
@endforeach
</ul>
</h3>
+ <p class="text-left card-text">
+ <strong>Hint:</strong>
+ <em>
+ Here is a list <a href="{{ route('popular_topics') }}" alt="all topics"> sorted by popularity</a>.
+ </em>
+ </p>
</div>
</div>
diff --git a/resources/views/topicpopular.blade.php b/resources/views/topicpopular.blade.php
index 59ade5b..f70956d 100644
--- a/resources/views/topicpopular.blade.php
+++ b/resources/views/topicpopular.blade.php
@@ -23,7 +23,7 @@ html {
<p class="card-text">
<strong>Hint:</strong>
<em>
- For a list of all topics please <a href="{{ route('topic_index') }}" alt="all topics">click here</a>.
+ Here is list <a href="{{ route('topic_index') }}" alt="all topics">sorted alphabetically</a>.
</em>
</p>
</div>