diff --git a/board/templates/board/base.html b/board/templates/board/base.html
index ce0ed4c..30b9b68 100644
--- a/board/templates/board/base.html
+++ b/board/templates/board/base.html
@@ -7,13 +7,13 @@
{% block title %}{% if title %}{{title}}{% else %}Index{% endif %}{% endblock %}
+
{% block extrastyle %}{% endblock %}
{% if perms.board.create_ban %}
-
{% endif %}
{% block extrajs %}{% endblock %}
diff --git a/board/templates/board/post_modify_view.html b/board/templates/board/post_modify_view.html
new file mode 100644
index 0000000..78543d5
--- /dev/null
+++ b/board/templates/board/post_modify_view.html
@@ -0,0 +1,17 @@
+{% extends "board/base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+{% endblock content %}
\ No newline at end of file
diff --git a/board/templates/board/post_snippet.html b/board/templates/board/post_snippet.html
index 8297397..f90f73a 100644
--- a/board/templates/board/post_snippet.html
+++ b/board/templates/board/post_snippet.html
@@ -6,6 +6,9 @@
{% if perms.board.create_ban %}
data-ban-url="{% url 'board:ban_create' board.url post.id %}"
{% endif %}
+ {% if perms.board.can_sticky %}
+ data-modify-url="{% url 'board:post_modify' post.id %}"
+ {% endif %}
>
{# Image #}
{% if post.thumbnail %}
@@ -24,7 +27,10 @@
{% endif %}
-{# Post ID, username, time #}
+{# Post ID, sticky, username, time #}
+{% if post.sticky and not post.op %}
+