doc.html 852 B

1234567891011121314151617181920212223242526
  1. <div class="post">
  2. <header class="post-header">
  3. <h1 class="post-title">{% if include.truncate %}<a href="{{ page.url | absolute_url }}">{{ page.title }}</a>{% else %}{{ page.title }}{% endif %}</h1>
  4. </header>
  5. <article class="post-content">
  6. {% if include.truncate %}
  7. {% if page.content contains '<!--truncate-->' %}
  8. {{ page.content | split:'<!--truncate-->' | first }}
  9. <div class="read-more">
  10. <a href="{{ page.url | absolute_url }}" >
  11. ...Read More
  12. </a>
  13. </div>
  14. {% else %}
  15. {{ page.content }}
  16. {% endif %}
  17. {% else %}
  18. {{ content }}
  19. <p><a class="edit-page-link" href="https://github.com/{{ site.ghrepo }}/blob/master/docs/{{ page.path }}" target="_blank">Edit on GitHub</a></p>
  20. {% endif %}
  21. </article>
  22. {% include doc_paging.html %}
  23. </div>