+
+
+ {{ pagevote.score }}
+
+ {{_("Like")}}
+
+
+
+
+
+ {% if not hide_actionbar_comment %}
+
+
+
+ {{_("Comment")}}
+
+
+ {% endif %}
+
+
+
+ {{_("Bookmark")}}
+
+
+
+
+
+ {{_("Share")}}
+
+
+ {% if actionbar_report_url %}
+
+
+
+ {{_("Report")}}
+
+
+ {% endif %}
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/actionbar/media-css.html b/templates/actionbar/media-css.html
new file mode 100644
index 0000000..60f75c8
--- /dev/null
+++ b/templates/actionbar/media-css.html
@@ -0,0 +1,47 @@
+
diff --git a/templates/actionbar/media-js.html b/templates/actionbar/media-js.html
new file mode 100644
index 0000000..1605a63
--- /dev/null
+++ b/templates/actionbar/media-js.html
@@ -0,0 +1,74 @@
+{% compress js %}
+
+{% endcompress %}
\ No newline at end of file
diff --git a/templates/blog/blog.html b/templates/blog/blog.html
index 48e6804..213a291 100644
--- a/templates/blog/blog.html
+++ b/templates/blog/blog.html
@@ -2,12 +2,12 @@
{% block js_media %}
{% include "comments/media-js.html" %}
- {% include "pagevotes/media-js.html" %}
+ {% include "actionbar/media-js.html" %}
{% endblock %}
{% block media %}
{% include "comments/media-css.html" %}
- {% include "pagevotes/media-css.html" %}
+ {% include "actionbar/media-css.html" %}
{% endblock %}
{% block title_row %}
@@ -41,14 +41,9 @@
{{ post.content|markdown|reference|str|safe}}
{% endcache %}
+ {% include "actionbar/list.html" %}
- {% cache 86400 'post_summary' post.id %}
- {{ post.summary|default(post.content, true)|markdown(lazy_load=True)|reference|str|safe }}
- {% endcache %}
+
+
+ {% cache 86400 'post_summary' post.id %}
+ {{ post.summary|default(post.content, true)|markdown(lazy_load=True)|reference|str|safe }}
+ {% endcache %}
+
+ {% set pagevote = post.pagevote %}
+ {% set hide_actionbar_comment = True %}
+ {% set include_hr = True %}
+ {% include "actionbar/list.html" %}
\ No newline at end of file
diff --git a/templates/blog/list.html b/templates/blog/list.html
index 46666f1..4eb7ee9 100644
--- a/templates/blog/list.html
+++ b/templates/blog/list.html
@@ -1,6 +1,7 @@
{% extends "three-column-content.html" %}
{% block three_col_media %}
{% include "blog/media-css.html" %}
+ {% include "actionbar/media-css.html" %}
diff --git a/templates/pagevotes/media-js.html b/templates/pagevotes/media-js.html
deleted file mode 100644
index cb36c55..0000000
--- a/templates/pagevotes/media-js.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-{% compress js %}
-
-{% endcompress %}
\ No newline at end of file
diff --git a/templates/problem/editorial.html b/templates/problem/editorial.html
index 52f4792..d4b760d 100644
--- a/templates/problem/editorial.html
+++ b/templates/problem/editorial.html
@@ -2,10 +2,12 @@
{% block content_js_media %}
{% include "comments/media-js.html" %}
+ {% include "actionbar/media-js.html" %}
{% endblock %}
{% block content_media %}
{% include "comments/media-css.html" %}
+ {% include "actionbar/media-css.html" %}
{% endblock %}
{% block header %}
@@ -29,6 +31,8 @@
{{ solution.content|markdown|reference|str|safe }}