index.swig 428 B

123456789101112131415161718
  1. {% include 'vendors.swig' %}
  2. {{- next_js('utils.js') }}
  3. {%- if theme.motion.enable %}
  4. {{- next_js('motion.js') }}
  5. {%- endif %}
  6. {%- set scheme_script = 'schemes/' + theme.scheme | lower + '.swig' %}
  7. {% include scheme_script %}
  8. {{- next_js('next-boot.js') }}
  9. {%- if theme.bookmark.enable %}
  10. {{- next_js('bookmark.js') }}
  11. {%- endif %}
  12. {%- if theme.pjax %}
  13. {% include 'pjax.swig' %}
  14. {%- endif %}
  15. {% include 'three.swig' %}