+
-{% endmacro %}
\ No newline at end of file
+{% endmacro %}
+
+{% macro get_github_link(page) %}
+{{ config.extra.repo }}/blob/{{ config.extra.branch }}/content/{{ page.relative_path }}?plain=1
+{% endmacro get_github_link %}
\ No newline at end of file
diff --git a/templates/page.html b/templates/page.html
index 2b1fb1b68..690177820 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -13,6 +13,10 @@
{{ page.content | safe }}
+{%- if page.content | length -%}
+{{ page.content | length }}
+{%- endif -%}
+
{{ macros::render_backlinks(page=page) }}
diff --git a/templates/section.html b/templates/section.html
index 525604272..e81746749 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -22,6 +22,13 @@
{{ macros::render_backlinks(page=section) }}
+{%- if not section.content | length -%}
+
+
Work In Progress 👷
+ This page doesn't have any content at the moment. You can contribute to this page
here.
+
+{%- endif -%}
+