Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
beucismis committed May 18, 2023
1 parent bb2ad50 commit 6d3bbfb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ozgursozluk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flask import Flask


__version__ = "0.5.0"
__version__ = "0.6.0"
__author__ = "beucismis"
__source__ = "https://github.com/beucismis/ozgursozluk"
__description__ = "a free and open source alternative ekşi sözlük front-end"
Expand Down
8 changes: 7 additions & 1 deletion ozgursozluk/templates/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
{% block main %}
<nav>{% include "navigation.html" %}</nav>
<div class="topic" style="text-align: center; padding-top: 3rem;">
<p>{{ error }}</p>
<p>
page not found
</br>
what you were looking for is just not there
</br></br>
<a href="{{ url_for('search', q='404') }}">go somewhere nice</a>
</p>
</div>
{% endblock %}
4 changes: 4 additions & 0 deletions ozgursozluk/templates/author.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
<small>{{ author.user_follower_count }} follower</small>
-
<small>{{ author.user_following_count }} following</small>
</br></br>
<a href="{{ url_for('search', q=author.nickname) }}">
if available go author topic
</a>
</div>
</div>
{% if author.biography %}
Expand Down
3 changes: 2 additions & 1 deletion ozgursozluk/templates/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
</div>
</form>
<div style="text-align: center;">
note: settings are saved in browser cookies.</br>clearing your cookies will reset them.
note: settings are saved in browser cookies, clearing your cookies will reset them.
also this website does not have an official affiliation with eksisozluk.com.
</br></br>
v{{ version }}
-
Expand Down
2 changes: 1 addition & 1 deletion ozgursozluk/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,4 @@ def settings():
def page_not_found(error):
"""Error handler."""

return render_template("404.html", error=error), 404
return render_template("404.html"), 404

0 comments on commit 6d3bbfb

Please sign in to comment.