mirror of
https://github.com/sbrow/thor.git
synced 2026-08-26 11:23:32 -04:00
feat: Added a stress tester so we can benchmark the template rendering.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<li class="comment">
|
||||
<strong>{{author}}</strong>
|
||||
<time datetime="{{date}}">{{date | format}}</time>
|
||||
<p>{{body}}</p>
|
||||
</li>
|
||||
@@ -0,0 +1,9 @@
|
||||
<li class="post">
|
||||
<article>
|
||||
<h3><a href="{{url}}">{{title}}</a></h3>
|
||||
<time datetime="{{date}}">{{date | format}}</time>
|
||||
<p class="excerpt">{{excerpt}}</p>
|
||||
{{#author}}<address>{{author}}</address>{{/author}}
|
||||
{{#tags}}<a href="/tag/{{slug}}" class="tag">{{name}}</a>{{/tags}}
|
||||
</article>
|
||||
</li>
|
||||
Reference in New Issue
Block a user