{% extends 'templates/main.volt' %} {% block content %} {% set course_url = url({'for':'home.course.show','id':chapter.course.id}) %} {% set learning_url = url({'for':'home.chapter.learning','id':chapter.id}) %}
{{ partial('chapter/sticky') }}
{{ chapter.content }}
{{ partial('chapter/comment') }}
{{ partial('chapter/catalog') }}
{% set share_url = full_url({'for':'home.share'},{'id':chapter.id,'type':'chapter','referer':auth_user.id}) %} {% set qrcode_url = url({'for':'home.qrcode'},{'text':share_url}) %}
{% endblock %} {% block link_css %} {{ css_link('https://cdn.jsdelivr.net/npm/vditor/dist/index.css', false) }} {% endblock %} {% block include_js %} {{ js_include('https://cdn.jsdelivr.net/npm/vditor/dist/method.min.js', false) }} {{ js_include('home/js/markdown.preview.js') }} {{ js_include('home/js/course.share.js') }} {{ js_include('home/js/chapter.read.js') }} {{ js_include('home/js/chapter.show.js') }} {{ js_include('home/js/comment.js') }} {% endblock %}