diff --git a/_global/Special:AllPages.html b/_global/Special:AllPages.html index 9fe3350..ec130bc 100644 --- a/_global/Special:AllPages.html +++ b/_global/Special:AllPages.html @@ -11,7 +11,7 @@ menu: ['global'] {%- assign page_name = page_name | append: " - " | append: page.title -%} {%- endif -%}
  • - {{ page_name }}  [{{ page.bytes }} bytes] + {{ page_name }}  {%- if page.author_full -%} (by {{ page.author_full.name }}) {%- endif -%}
  • {%- endfor -%} diff --git a/_global/Special:LongPages.html b/_global/Special:LongPages.html index 7b0c8a5..f39ace4 100644 --- a/_global/Special:LongPages.html +++ b/_global/Special:LongPages.html @@ -3,12 +3,12 @@ layout: default title: Long pages menu: ['global'] --- -{% if site.data.wiki_pages %} -{%- assign long_pages = site.data.wiki_pages | sort: 'bytes' | reverse -%} +{% if site.wiki %} +{%- assign long_pages = site.wiki | sort: 'bytes' | reverse -%}
      {%- for page in long_pages limit:50 -%}
    1. - {{ page.title }}  [{{ page.bytes }} bytes] + {{ page.title }} 
    2. {%- endfor -%}
    diff --git a/_global/Special:RecentChanges.html b/_global/Special:RecentChanges.html index f2c9094..3871e5f 100644 --- a/_global/Special:RecentChanges.html +++ b/_global/Special:RecentChanges.html @@ -3,8 +3,8 @@ layout: default title: Recent changes menu: ['global'] --- -{% if site.data.wiki_pages %} -{%- assign recent_changes = site.data.wiki_pages | where_exp: 'page', 'page.modified' | sort: 'modified' | reverse -%} +{% if site.wiki %} +{%- assign recent_changes = site.wiki | where_exp: 'page', 'page.modified' | sort: 'modified' | reverse -%}