Skip to content

Commit 6369335

Browse files
committed
1 parent 7bbb398 commit 6369335

10 files changed

Lines changed: 32 additions & 7 deletions

File tree

app/static/app/css/customCSS.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ a.navbar-item {
1717
#shareIcon {
1818
display: inline;
1919
}
20+
}
21+
#tutorial-tag {
22+
color: blue;
2023
}

app/static/app/github.svg

Lines changed: 1 addition & 0 deletions
Loading

app/static/app/guy.svg

Lines changed: 1 addition & 0 deletions
Loading

app/templates/base.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
</p>
6161
<button href="https://www.patreon.com/bePatron?u=18082750" data-patreon-widget-type="become-patron-button">Become a Patron!</button><br>
6262
<a href=""><img src="{% static 'app/twitter.svg' %}" height="35" width="35"></a>
63+
<a href=""><img src="{% static 'app/github.svg' %}" height="35" width="35"></a>
6364
<a href=""><img src="{% static 'app/fb.svg' %}" height="35" width="35"></a>
6465
<a href=""><img src="{% static 'app/linkedin.svg' %}" height="35" width="35"></a>
6566
</div>

app/templates/home.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ <h1 class="title" align="center">Search Tutorials</h1>
118118
</p>
119119
<button href="https://www.patreon.com/bePatron?u=18082750" data-patreon-widget-type="become-patron-button">Become a Patron!</button><br>
120120
<a href=""><img src="{% static 'app/twitter.svg' %}" height="35" width="35"></a>
121+
<a href=""><img src="{% static 'app/github.svg' %}" height="35" width="35"></a>
121122
<a href=""><img src="{% static 'app/fb.svg' %}" height="35" width="35"></a>
122123
<a href=""><img src="{% static 'app/linkedin.svg' %}" height="35" width="35"></a>
123124
</div>

app/templates/latest.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ <h3 class="title">Latest in tutorialdb </h3>
1111

1212
{% for tutorial in results %}
1313
<div class="box">
14-
<a href="{{ tutorial.link }}" target="_blank">{{ tutorial.title }}</a>
14+
<a href="{{ tutorial.link }}" target="_blank" id="tutorial-tag">{{ tutorial.title }}</a>
1515
<div class="tile">
1616
{% for tag in tutorial.tags.all %}
1717
<span class="tag">
18-
<b>📌 {{ tag }}</b>
18+
<b><a href="/tags/tag={{ tag }}" > 📌 {{ tag }}</a></b>
1919
</span>&nbsp;
2020
{% endfor %}
2121
<button class="fa fa-share-alt is-pulled-right" id="shareIcon"

app/templates/search_results.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h3 class="subtitle">Search Results for "{{ tquery }}"</h3>
99

1010
{% for tutorial in object_list %}
1111
<div class="box">
12-
<a href="{{ tutorial.link }}" target="_blank" style="color: blue;">{{ tutorial.title }}</a>
12+
<a href="{{ tutorial.link }}" target="_blank" id="tutorial-tag">{{ tutorial.title }}</a>
1313
<div class="tile">
1414
{% for tag in tutorial.tags.all %}
1515
<span class="tag">

app/templates/tagslink.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{% extends 'base.html' %}
22
{% block content %}
3-
3+
{% load staticfiles %}
4+
{% if object_list %}
45
<div class="section">
56
<h2 class="title is-4">Tutorials Tagged
67
<span class="box tag">
@@ -10,11 +11,11 @@ <h2 class="title is-4">Tutorials Tagged
1011
<div class="container">
1112
{% for tutorial in object_list %}
1213
<div class="box">
13-
<a href="{{ tutorial.link }}" target="_blank">{{ tutorial.title }}</a>
14+
<a href="{{ tutorial.link }}" target="_blank" id="tutorial-tag">{{ tutorial.title }}</a>
1415
<div class="tile">
1516
{% for tag in tutorial.tags.all %}
1617
<span class="tag">
17-
<b>📌 {{ tag }}</b>
18+
<b><a href="/tags/tag={{ tag }}" > 📌 {{ tag }}</a></b>
1819
</span>&nbsp;
1920
{% endfor %}
2021
<button class="fa fa-share-alt is-pulled-right" id="shareIcon"
@@ -30,4 +31,11 @@ <h2 class="title is-4">Tutorials Tagged
3031
</div>
3132
</div>
3233
</div>
34+
{% else %}
35+
<h2 class="subtitle notification is-primary title is-3" align="center">
36+
Ah! Sorry, No Results<br>
37+
<img src="{% static 'app/search404.svg' %}" height="160" width="160">
38+
</h2>
39+
{% endif %}
40+
3341
{% endblock %}

app/templates/thankyou.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,17 @@ <h1 class="title">
99
Thanks<br>
1010
<img src="{% static 'app/emoji1.png' %}" height="50" width="50">
1111
</h1>
12+
<img src="{% static 'app/guy.svg' %}" width="" height="">
13+
</div>
14+
<div class="container">
15+
<div class="field">
16+
<a href="/contribute" class="button is-pulled-left is-link is-rounded">Submit More</a>
1217
</div>
18+
<div class="field">
19+
<a href="/" class="button is-pulled-right is-link is-rounded">Search Tutorials</a>
20+
</div>
21+
</div>
22+
</div>
1323
</div>
1424
</section>
1525
</center>

taggie/tags.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"mvc", "github", "gitlab", "typescript",
1313
"bash", "ubuntu", "vim", "ios",
1414
"dotnet", "csharp", "laravel", "reactnative",
15-
"machine learning", "serverless", "graphql",
15+
"machinelearning", "serverless", "graphql",
1616
"kotlin", "elixir", "agile", "kubernetes",
1717
"mongodb", "ux", "flutter", "haskell",
1818
"cloud", "database", "wordpress",

0 commit comments

Comments
 (0)