summaryrefslogtreecommitdiffstats
path: root/templates/public/index.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-01-16 05:59:13 +0100
committerDan McGee <dan@archlinux.org>2013-01-16 06:17:40 +0100
commit131d238ae38034c3df0ab1dbc307773ac6a38442 (patch)
tree5ac6a206c449b4c6524720ac00dcadb6eaa3f956 /templates/public/index.html
parent8eaa63b2976e697cd2e6adca43f5d6d9cf7a8eda (diff)
downloadarchweb-131d238ae38034c3df0ab1dbc307773ac6a38442.tar.gz
archweb-131d238ae38034c3df0ab1dbc307773ac6a38442.tar.xz
Add a little easter egg for people to find
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/public/index.html')
-rw-r--r--templates/public/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/public/index.html b/templates/public/index.html
index 0be4f18..abf16af 100644
--- a/templates/public/index.html
+++ b/templates/public/index.html
@@ -211,9 +211,14 @@
</a>
</div>
{% endcache %}
+{% endblock %}
+
+{% block content_after %}
+<div id="konami" style="display:none;"></div>
{% load cdn %}{% jquery %}
<script type="text/javascript" src="{% static "bootstrap-typeahead.min.js" %}"></script>
+<script type="text/javascript" src="{% static "konami.pack.js" %}"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#pkgsearch-field').typeahead({
@@ -228,5 +233,16 @@ $(document).ready(function() {
items: 10
}).attr('autocomplete', 'off');
});
+$(document).ready(function() {
+ var konami = new Konami();
+ konami.code = function() {
+ $('#konami').html('<img src="{% static "vector_tux.png" %}" alt=""/>');
+ setTimeout(function() {
+ $('#konami').fadeIn(500);
+ }, 500);
+ };
+ konami.iphone.code = konami.code;
+ konami.load();
+});
</script>
{% endblock %}