diff options
| -rw-r--r-- | templates/results.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/results.html b/templates/results.html index 2e34811..f97a096 100644 --- a/templates/results.html +++ b/templates/results.html @@ -116,10 +116,12 @@ <img src="{{info[1]}}" alt="{{info[0]}}" class="infobox-image"> <div class="infobox-content"> <p class="infobox-summary"> {{info[2]|safe}} - </p> -<a class="read-more" href="{{info[3]}}"> + </p> + {{if info[3] != "#"}} + <a class="read-more" href="{{info[3]}}"> {{l("read_more")}} </a> + {{endif}} </div> </div> </section> @@ -129,4 +131,4 @@ </div> </body> -</html>
\ No newline at end of file +</html> |
