added rel="nofollow" to links throughout site

small-nav
chimchooree 4 years ago
parent fc43c6b711
commit 71e67ed1e6

@ -15,20 +15,20 @@
end end
%> %>
% # << is always active link pointing to 0 % # << is always active link pointing to 0
<a href=/diary/0><<</a> <a href=/diary/0 rel="nofollow"><<</a>
% # < points to 0 if page 0 or below % # < points to 0 if page 0 or below
% if page <= 0: % if page <= 0:
<a href=/diary/0><</a> <a href=/diary/0 rel="nofollow"><</a>
% # < points to previous page otherwise % # < points to previous page otherwise
% else: % else:
<a href=/diary/{{page - 1}}><</a> <a href=/diary/{{page - 1}} rel="nofollow"><</a>
% end % end
% # fill out number cluster to the left when page is high % # fill out number cluster to the left when page is high
% if max_pages > cluster and page > max_pages - cluster: % if max_pages > cluster and page > max_pages - cluster:
% for j in range(cluster - max_pages + page): % for j in range(cluster - max_pages + page):
<a href=/diary/{{max_pages - cluster * 2 + j}}>{{max_pages - cluster * 2 + j}}</a> <a href=/diary/{{max_pages - cluster * 2 + j}} rel="nofollow">{{max_pages - cluster * 2 + j}}</a>
% end % end
% end % end
@ -39,27 +39,27 @@
<b>{{i}}</b> <b>{{i}}</b>
% # form neighboring numbers into links % # form neighboring numbers into links
% else: % else:
<a href=/diary/{{i}}>{{i}}</a> <a href=/diary/{{i}} rel="nofollow">{{i}}</a>
% end % end
% end % end
% # fill out number cluster to the right when page is low % # fill out number cluster to the right when page is low
% if page <= cluster - 1 and max_pages > page + cluster: % if page <= cluster - 1 and max_pages > page + cluster:
% for j in range(cluster - page): % for j in range(cluster - page):
<a href=/diary/{{page + j + cluster + 1}}>{{page + j + cluster + 1}}</a> <a href=/diary/{{page + j + cluster + 1}} rel="nofollow">{{page + j + cluster + 1}}</a>
% end % end
% end % end
% # > points to max if page is at or above maximum % # > points to max if page is at or above maximum
% if page >= max_pages: % if page >= max_pages:
<a href=/diary/{{max_pages}}>></a> <a href=/diary/{{max_pages}} rel="nofollow">></a>
% # > point to next page otherwise % # > point to next page otherwise
% else: % else:
<a href=/diary/{{page + 1}}>></a> <a href=/diary/{{page + 1}} rel="nofollow">></a>
% end % end
% # >> is always active link to maximum page % # >> is always active link to maximum page
<a href=/diary/{{max_pages}}>>></a> <a href=/diary/{{max_pages}} rel="nofollow">>></a>
</center> </center>
</div> </div>
@ -69,7 +69,7 @@
% for s in snippets[page * limit:page * limit + limit]: % for s in snippets[page * limit:page * limit + limit]:
<div class="snippet"> <div class="snippet">
<div class="snippet-title"> <div class="snippet-title">
<a href={{s[4]}}>{{!s[0]}}</a> <a href={{s[4]}} rel="nofollow">{{!s[0]}}</a>
</div> </div>
<div class="snippet-content"> <div class="snippet-content">
{{!s[1]}} {{!s[1]}}
@ -78,7 +78,7 @@
{{!s[2]}}{{!s[3]}} {{!s[2]}}{{!s[3]}}
</div> </div>
<div class="snippet-link"> <div class="snippet-link">
<a href={{s[4]}}>Read More</a> <a href={{s[4]}} rel="nofollow">Read More</a>
</div> </div>
</div> </div>
% end % end

@ -2,7 +2,7 @@
<!--Content--> <!--Content-->
<div class="pages"> <div class="pages">
<div class="textbox desc"> <div class="textbox desc">
Blessfrey is an action rpg made in Godot Engine. Follow its development on Twitter <a href="https://twitter.com/lilchimchooree">@lilchimchooree</a><br> Blessfrey is an action rpg made in Godot Engine. Follow its development on Twitter <a href="https://twitter.com/lilchimchooree" rel="nofollow">@lilchimchooree</a><br>
</div> </div>
<div class="textbox story"> <div class="textbox story">
<h1>Story</h1><br> <h1>Story</h1><br>

@ -1,7 +1,7 @@
% rebase('frame.tpl') % rebase('frame.tpl')
% import random % import random
<div class="social"> <div class="social">
<a href="https://twitter.com/lilchimchooree"><img class="img-social-ribbon" src="static/img/ele/twitter-ribbon.png" alt="link to developer's Twitter"></a> <a href="https://twitter.com/lilchimchooree"><img class="img-social-ribbon" src="static/img/ele/twitter-ribbon.png" alt="link to developer's Twitter" rel="nofollow"></a>
</div> </div>
<div class="bg"> </div> <div class="bg"> </div>
@ -9,7 +9,7 @@
<div class="footer-row"> </div> <div class="footer-row"> </div>
<div class="tweets"> <div class="tweets">
<a class="twitter-timeline" data-width="400" data-height="200" data-theme="dark" href="https://twitter.com/lilchimchooree?ref_src=twsrc%5Etfw">Tweets by lilchimchooree</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> <a class="twitter-timeline" data-width="400" data-height="200" data-theme="dark" rel="nofollow" href="https://twitter.com/lilchimchooree?ref_src=twsrc%5Etfw">Tweets by lilchimchooree</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div> </div>
<div class="news"> <div class="news">
@ -18,7 +18,7 @@
<ul> <ul>
% for n in news: % for n in news:
% bullet = random.choice(['.','•','☆','★']) % bullet = random.choice(['.','•','☆','★'])
<li>{{bullet}}&#9;<a href={{n[0]}}>{{!n[1]}}</a><br></li> <li>{{bullet}}&#9;<a href={{n[0]}} rel="nofollow">{{!n[1]}}</a><br></li>
% end % end
</ul> </ul>
<br> <br>

@ -3,22 +3,22 @@
<div class="nav-grid"> <div class="nav-grid">
<div class="nav-bar"></div> <div class="nav-bar"></div>
<div class="nav-index"> <div class="nav-index">
<a href="/"> <a href="/" rel="nofollow">
<div class="button">home</div> <div class="button">home</div>
</a> </a>
</div> </div>
<div class="nav-game"> <div class="nav-game">
<a href="/game"> <a href="/game" rel="nofollow">
<div class="button">game</div> <div class="button">game</div>
</a> </a>
</div> </div>
<div class="nav-diary"> <div class="nav-diary">
<a href="/diary"> <a href="/diary" rel="nofollow">
<div class="button">diary</div> <div class="button">diary</div>
</a> </a>
</div> </div>
<div class="nav-presskit"> <div class="nav-presskit">
<a href="/presskit"> <a href="/presskit" rel="nofollow">
<div class="button">presskit</div> <div class="button">presskit</div>
</a> </a>
</div> </div>

@ -13,7 +13,7 @@
<li><b>Engine:</b> Godot Engine</li> <li><b>Engine:</b> Godot Engine</li>
<li><b>Website:</b> blessfrey.com</li> <li><b>Website:</b> blessfrey.com</li>
<li><b>Price:</b> $105.00 USD</li> <li><b>Price:</b> $105.00 USD</li>
<li><b>Press Contact:</b> <a href="https://twitter.com/lilchimchooree">Twitter @lilchimchooree</a></li> <li><b>Press Contact:</b> <a href="https://twitter.com/lilchimchooree" rel="nofollow">Twitter @lilchimchooree</a></li>
<li><b>Social:</b> <a href="https://twitter.com/lilchimchooree">Twitter</a></li> <li><b>Social:</b> <a href="https://twitter.com/lilchimchooree">Twitter</a></li>
</ul><br> </ul><br>
</div> </div>
@ -72,7 +72,7 @@ The multiclass and skill system emphasizes player skill, personal expression, an
<div class="textbox contact"> <div class="textbox contact">
<h1>Contact</h1> <h1>Contact</h1>
<br> <br>
Please message me on <a href="https://twitter.com/lilchimchooree">Twitter @lilchimchooree</a>. Please message me on <a href="https://twitter.com/lilchimchooree" rel="nofollow">Twitter @lilchimchooree</a>.
</div> </div>
<div class="textbox credits"> <div class="textbox credits">
@ -82,7 +82,7 @@ The multiclass and skill system emphasizes player skill, personal expression, an
<li>Art: chimchooree</li> <li>Art: chimchooree</li>
<li>Design: chimchooree</li> <li>Design: chimchooree</li>
<li>Engine: Godot Engine</li> <li>Engine: Godot Engine</li>
<li><a href="credits.html">Full Credits</a></li> <li><a href="/credits/" rel="nofollow">Full Credits</a></li>
</ul><br> </ul><br>
</div> </div>

Loading…
Cancel
Save