diff --git a/minecraftcodex/blog/templates/blog.html b/minecraftcodex/blog/templates/blog.html index 7121586..4a9fe6d 100644 --- a/minecraftcodex/blog/templates/blog.html +++ b/minecraftcodex/blog/templates/blog.html @@ -1,6 +1,7 @@ {% extends "layout.html" %} {% block content %} +

Blog

{% for item in page.object_list %}
@@ -30,4 +31,5 @@
{% endif %} + {% endblock %} diff --git a/minecraftcodex/blog/templates/blog_entry.html b/minecraftcodex/blog/templates/blog_entry.html index 875c76a..ea2806e 100644 --- a/minecraftcodex/blog/templates/blog_entry.html +++ b/minecraftcodex/blog/templates/blog_entry.html @@ -1,6 +1,7 @@ {% extends "layout.html" %} {% block content %} +

Go back

{{ item.title }}

@@ -13,4 +14,5 @@ {{ item.content|safe }}
+ {% endblock %} diff --git a/minecraftcodex/database/templates/about.html b/minecraftcodex/database/templates/about.html index e610ff9..b9de91a 100644 --- a/minecraftcodex/database/templates/about.html +++ b/minecraftcodex/database/templates/about.html @@ -5,70 +5,72 @@ {% endblock %} {% block content %} -

About

- -

The project

- -

Ooh, name it after me! Alright, let's mafia things up a bit. Joey, burn down the ship. Clamps, burn down the crew. Pansy. Really?! Okay, it's 500 dollars, you have no choice of carrier, the battery can't hold the charge and the reception isn't very… Leela's gonna kill me.

A Pharaoh to Remember

I can explain. It's very valuable. Oh God, what have I done? Bender, you risked your life to save me! I don't know what you did, Fry, but once again, you screwed up! Now all the planets are gonna start cracking wise about our mamas. Why would a robot need to drink? Ah, yes! John Quincy Adding Machine. He struck a chord with the voters when he pledged not to go on a killing spree.

Time Keeps on Slippin'

There's no part of that sentence I didn't like! I guess because my parents keep telling me to be more ladylike. As though! Yeah, and if you were the pope they'd be all, "Straighten your pope hat." And "Put on your good vestments."

Where the Buggalo Roam

But I've never been to the moon! This is the worst part. The calm before the battle. But I've never been to the moon! Whoa a real live robot; or is that some kind of cheesy New Year's costume? You wouldn't. Ask anyway!

-
+
+

About

+ +

The project

+ +

Ooh, name it after me! Alright, let's mafia things up a bit. Joey, burn down the ship. Clamps, burn down the crew. Pansy. Really?! Okay, it's 500 dollars, you have no choice of carrier, the battery can't hold the charge and the reception isn't very… Leela's gonna kill me.

A Pharaoh to Remember

I can explain. It's very valuable. Oh God, what have I done? Bender, you risked your life to save me! I don't know what you did, Fry, but once again, you screwed up! Now all the planets are gonna start cracking wise about our mamas. Why would a robot need to drink? Ah, yes! John Quincy Adding Machine. He struck a chord with the voters when he pledged not to go on a killing spree.

Time Keeps on Slippin'

There's no part of that sentence I didn't like! I guess because my parents keep telling me to be more ladylike. As though! Yeah, and if you were the pope they'd be all, "Straighten your pope hat." And "Put on your good vestments."

Where the Buggalo Roam

But I've never been to the moon! This is the worst part. The calm before the battle. But I've never been to the moon! Whoa a real live robot; or is that some kind of cheesy New Year's costume? You wouldn't. Ask anyway!

+
- -

The people

-
-
-
- -
-

Felipe Martín

-

Developer and minecraft lover.

-

- Want to help the awesome minecraft community building a tool to - help everyone on its days over minecraftia. -

- - @fmartingr - -

-
-
+ +

The people

+
+
+
+ +
+

Felipe Martín

+

Developer and minecraft lover.

+

+ Want to help the awesome minecraft community building a tool to + help everyone on its days over minecraftia. +

+ + @fmartingr + +

+
+
+
-
-
-
- -
-

Ramiro Sanchez

-

Design and stuff.

-

I haven't done anything yet, but it's cool to be here!
:)

-

- - @rsanchezbalo - -

-
-
+
+
+ +
+

Ramiro Sanchez

+

Design and stuff.

+

I haven't done anything yet, but it's cool to be here!
:)

+

+ + @rsanchezbalo + +

+
+
+
-
- {# TEMPLATE -
-
- -
-

Name

-

What it does

-

Little text

-

- - @ - -

-
-
+ {# TEMPLATE +
+
+ +
+

Name

+

What it does

+

Little text

+

+ + @ + +

+
+
+
+ #}
- #}
{% endblock %} diff --git a/minecraftcodex/database/templates/blocks.html b/minecraftcodex/database/templates/blocks.html index afbdac4..40b11e5 100644 --- a/minecraftcodex/database/templates/blocks.html +++ b/minecraftcodex/database/templates/blocks.html @@ -1,6 +1,7 @@ {% extends "layout.html" %} {% block content %} +

Blocks


@@ -70,4 +71,5 @@ {% endfor %}
+
{% endblock %} diff --git a/minecraftcodex/database/templates/blocks_detail.html b/minecraftcodex/database/templates/blocks_detail.html index 63c0f85..90d90b3 100644 --- a/minecraftcodex/database/templates/blocks_detail.html +++ b/minecraftcodex/database/templates/blocks_detail.html @@ -9,33 +9,35 @@ {% endblock %} {% block content %} -
-
-

{{ item.name() }}

-
-

Can drop

- ... -

Used in

- ... -
-
-
-
-
- {% if item.main_texture %} - - {% endif %} +
+
+
+

{{ item.name() }}

+
+

Can drop

+ ... +

Used in

+ ... +
+
+
+
+
+ {% if item.main_texture %} + + {% endif %} +
+ {% if user.is_authenticated() %} + + {% endif %} +
    +
  • Data value: {{ item.data_value }}
  • + +
- {% if user.is_authenticated() %} - - {% endif %} -
    -
  • Data value: {{ item.data_value }}
  • - -
diff --git a/minecraftcodex/database/templates/items.html b/minecraftcodex/database/templates/items.html index b24eeb3..83b10f7 100644 --- a/minecraftcodex/database/templates/items.html +++ b/minecraftcodex/database/templates/items.html @@ -1,6 +1,7 @@ {% extends "layout.html" %} {% block content %} +

Items


@@ -70,4 +71,5 @@ {% endfor %}
+
{% endblock %} diff --git a/minecraftcodex/database/templates/items_detail.html b/minecraftcodex/database/templates/items_detail.html index e0c053c..e3f4820 100644 --- a/minecraftcodex/database/templates/items_detail.html +++ b/minecraftcodex/database/templates/items_detail.html @@ -1,26 +1,28 @@ {% extends "layout.html" %} {% block content %} -
-
-

{{ item.name() }}

-
-

Can drop

- ... -

Used in

- ... -
-
-
-
- {% if item.main_texture %} - - {% endif %} +
+
+
+

{{ item.name() }}

+
+

Can drop

+ ... +

Used in

+ ... +
+
+
+
+ {% if item.main_texture %} + + {% endif %} +
+
    +
  • Data value: {{ item.data_value }}
  • + +
-
    -
  • Data value: {{ item.data_value }}
  • - -
diff --git a/minecraftcodex/database/templates/layout.html b/minecraftcodex/database/templates/layout.html index aa2f99c..0202cff 100644 --- a/minecraftcodex/database/templates/layout.html +++ b/minecraftcodex/database/templates/layout.html @@ -31,6 +31,7 @@ Thank you! {% block head_title %}{{ site_title }}{% endblock %} + {% block header %}
Lack of information? @@ -81,10 +82,11 @@ Thank you!
-
- {% block content %} - {% endblock %} -
+{% endblock %} +{% block content %} +
+{% endblock %} +{% block footer %}

@@ -103,16 +105,17 @@ Thank you!
-{% if google_analytics %} - -{% endif %} + ga('create', '{{ google_analytics }}', 'minecraftcodex.com'); + ga('send', 'pageview'); + + {% endif %} +{% endblock %} diff --git a/minecraftcodex/database/templates/version.html b/minecraftcodex/database/templates/version.html index 1f3587f..23bdf80 100644 --- a/minecraftcodex/database/templates/version.html +++ b/minecraftcodex/database/templates/version.html @@ -5,6 +5,7 @@ {% endblock %} {% block content %} +

Minecraft versions


Go back @@ -24,4 +25,5 @@

Changelog

{{ version.changelog|nl2br }}

{% endfor %} +
{% endblock %} diff --git a/minecraftcodex/database/templates/versions.html b/minecraftcodex/database/templates/versions.html index b55245e..f5e4072 100644 --- a/minecraftcodex/database/templates/versions.html +++ b/minecraftcodex/database/templates/versions.html @@ -5,6 +5,7 @@ {% endblock %} {% block content %} +

Minecraft versions


@@ -58,4 +59,5 @@ {% endfor %} + {% endblock %}