Просмотр исходного кода

refactor: update installation checks

Fix #1308
George Cushen 6 лет назад
Родитель
Сommit
166ded2480
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      layouts/index.html

+ 3 - 1
layouts/index.html

@@ -1,9 +1,11 @@
 {{- define "main" -}}
 
-{{ if not (isset site.Params "color_theme") }}
+{{/* Check that user fully installed Academic. */}}
+{{ if not (isset site.Params "theme") }}
   {{ errorf "Please complete the installation of Academic by following the steps at https://sourcethemes.com/academic/docs/install/" }}
 {{ end }}
 
+{{/* Generate homepage. */}}
 {{ partial "widget_page.html" . }}
 
 {{- end -}}