fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
850 B
25 lines
850 B
<div class="post">
|
|
<header class="post-header">
|
|
<h1 class="post-title">{% if include.truncate %}<a href="{{ page.url | absolute_url }}">{{ page.title }}</a>{% else %}{{ page.title }}{% endif %}</h1>
|
|
</header>
|
|
|
|
<article class="post-content">
|
|
{% if include.truncate %}
|
|
{% if page.content contains '<!--truncate-->' %}
|
|
{{ page.content | split:'<!--truncate-->' | first }}
|
|
<div class="read-more">
|
|
<a href="{{ page.url | absolute_url }}" >
|
|
...Read More
|
|
</a>
|
|
</div>
|
|
{% else %}
|
|
{{ page.content }}
|
|
{% endif %}
|
|
{% else %}
|
|
{{ content }}
|
|
|
|
<p><a class="edit-page-link" href="https://github.com/{{ site.ghrepo }}/blob/main/docs/{{ page.path }}" target="_blank">Edit on GitHub</a></p>
|
|
{% endif %}
|
|
</article>
|
|
{% include doc_paging.html %}
|
|
</div>
|
|
|