mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-02 10:59:15 +01:00
78 lines
2.6 KiB
HTML
78 lines
2.6 KiB
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="article">
|
|
<div class="well" style="border-color:darkgray;">
|
|
<div class="container-fluid" style="margin-top:1em;">
|
|
<div class="row">
|
|
<div class="col-sm-12" style="padding:0;"><i>Boxes</i> draws a box around its input text. It can remove and repair those boxes, too. You can easily make your own box designs if you wish, but many designs are already provided.</div>
|
|
</div>
|
|
<div class="row bxsample">
|
|
<div class="col-sm-5"><pre class="hidden-xs hidden-md">
|
|
|
|
|
|
</pre><pre> __________________
|
|
/\ \
|
|
\_| |
|
|
Hello World! ==> | Hello World! |
|
|
| |
|
|
| _____________|_
|
|
\_/_______________/
|
|
</pre></div><div class="col-sm-1 visible-md-block"> </div>
|
|
<div class="col-sm-3"><pre class="hidden-xs hidden-md">
|
|
|
|
|
|
</pre><pre class="hidden-xs">
|
|
|
|
</pre><pre> /******************/
|
|
/* */
|
|
/* Hello World! */
|
|
/* */
|
|
/******************/
|
|
</pre></div>
|
|
<div class="col-sm-4 hidden-md"><pre> \\\///
|
|
/ _ _ \
|
|
(| (.)(.) |)
|
|
.---.OOOo--()--oOOO.---.
|
|
| |
|
|
| Hello World! |
|
|
| |
|
|
'---.oooO--------------'
|
|
( ) Oooo.
|
|
\ ( ( )
|
|
\_) ) /
|
|
(_/</pre></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% for post in paginator.posts %}
|
|
<div class="article">
|
|
<div class="well well-sm">
|
|
<h1><a href="{{ site.baseurl}}{{ post.url }}">{{ post.date | date: "%b %-d, %Y" }} - {{ post.title }}</a></h1>
|
|
{% if site.comments == true and post.comments == true and site.disqus != '' %}
|
|
<p class="author"><a href="{{ site.baseurl }}{{ post.url }}/#disqus_thread">Comments</a></p>
|
|
{% endif %}
|
|
<div class="content">
|
|
{{ post.content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div class="pagination">
|
|
{% if paginator.previous_page %}
|
|
{% if paginator.previous_page == 1 %}
|
|
<a class="btn btn-default" href="{{ site.baseurl}}/index.html" class="previous">Newer</a>
|
|
{% else %}
|
|
<a class="btn btn-default" href="{{ site.baseurl}}/page{{ paginator.previous_page }}" class="previous">Newer</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
|
|
{% if paginator.next_page %}
|
|
<a class="btn btn-default" href="{{ site.baseurl}}/page{{ paginator.next_page }}" class="next">Older</a>
|
|
{% endif %}
|
|
</div>
|