diff --git a/_layouts/default.html b/_layouts/default.html
index 87aec9b..3bcc7ae 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -89,6 +89,18 @@
.main .page-header {
margin-top: 0;
}
+
+ /*
+ * Property table
+ */
+
+ .table .read-only {
+ color: #888;
+ }
+
+ .table .return strong {
+ color: #9c393c;
+ }
@@ -188,7 +200,68 @@
{% capture package_name %}{{ page.categories | join: '.' }}{% endcapture %}
-
+
+
{{ page.description }}
+ {% if page.properties %}
+
Properties
+
+
+
+ | Property |
+ Description |
+
+
+
+ {% for prop in page.properties %}
+
+ | {{ prop.name }} : {{ prop.type }}{% if prop.default %} = {{ prop.default }}{% endif %} |
+ {% unless prop.access == 'public' or prop.access == null %}[{{ prop.access }}] {% endunless %}{{ prop.description }} |
+
+ {% endfor %}
+
+
+ {% endif %}
+ {% if page.methods %}
+
Methods
+
+ {% endif %}
{{ content }}
diff --git a/net/flashpunk/_posts/2014-04-03-Entity.md b/net/flashpunk/_posts/2014-04-03-Entity.md
index e66da8b..1f602a3 100644
--- a/net/flashpunk/_posts/2014-04-03-Entity.md
+++ b/net/flashpunk/_posts/2014-04-03-Entity.md
@@ -1,6 +1,7 @@
---
title: Entity
layout: default
+parent: net.flashpunk.Tweener
---
Main game Entity class updated by World.
diff --git a/net/flashpunk/graphics/_posts/2014-04-24-Image.md b/net/flashpunk/graphics/_posts/2014-04-24-Image.md
index 44b2b0a..65f48f1 100644
--- a/net/flashpunk/graphics/_posts/2014-04-24-Image.md
+++ b/net/flashpunk/graphics/_posts/2014-04-24-Image.md
@@ -1,42 +1,54 @@
---
title: Image
layout: default
----
+parent: net.flashpunk.Graphic
+description: Performance-optimized non-animated image.
+properties:
+ - name: alpha
+ type: Number
+ description: "Change the opacity of the Image, a value from 0 to 1."
+
+ - name: angle
+ type: Number
+ description: "Rotation of the image, in degrees."
+
+ - name: blend
+ type: String
+ description: "Optional blend mode to use when drawing this image."
-Performance-optimized non-animated image.
-
-### Public Properties
-
-