-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfooter.html
More file actions
38 lines (35 loc) · 911 Bytes
/
footer.html
File metadata and controls
38 lines (35 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<footer class="footer footer-default">
<div class="container">
<nav class="float-left">
<ul>
<li>
<a href="https://pythonpy.org">
Python Paraguay
</a>
</li>
<li>
<a href="/acerca-de/">
Acerca de
</a>
</li>
<li>
<a href="/blog/">
Blog
</a>
</li>
<li>
<a href="https://github.com/pythonparaguay">
Github
</a>
</li>
</ul>
</nav>
<div class="copyright float-right">
©
<script>
document.write(new Date().getFullYear())
</script>, powered by <a href="https://wagtail.io/" target="_blank">Wagtail</a>
/ <a href="https://wagtail.io/" target="_blank">Django</a>
</div>
</div>
</footer>