aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_notes/bash.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-04-05 11:51:03 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-04-05 11:51:03 +0200
commitcf9bd91f6875c3289057f8d1a799c9beb1f5b268 (patch)
tree9f395f9a77a108d10fbed744224d3bb576d91d29 /_notes/bash.html
parentnotes/bash: generate HTML programmatically (diff)
downloadblog-cf9bd91f6875c3289057f8d1a799c9beb1f5b268.tar.gz
blog-cf9bd91f6875c3289057f8d1a799c9beb1f5b268.zip
notes/bash: styling
Diffstat (limited to '_notes/bash.html')
-rw-r--r--_notes/bash.html12
1 files changed, 10 insertions, 2 deletions
diff --git a/_notes/bash.html b/_notes/bash.html
index ea0cb8a..367ee03 100644
--- a/_notes/bash.html
+++ b/_notes/bash.html
@@ -2,6 +2,8 @@
title: Bash
subtitle: best practices
layout: plain
+links:
+ - {rel: stylesheet, href: 'assets/css/bash.css'}
features:
- title: Arrays
topics:
@@ -133,12 +135,18 @@ features:
<div class="row">
<div class="col-md-6">
{% for guide in topic.do %}
- {% highlight bash %}{{ guide }}{% endhighlight %}
+ <div class="pre_container pre_do">
+ {% highlight bash %}{{ guide }}{% endhighlight %}
+ <div class="pre_mark"><span class="glyphicon glyphicon-ok"></span></div>
+ </div>
{% endfor %}
</div>
<div class="col-md-6">
{% for guide in topic.dont %}
- {% highlight bash %}{{ guide }}{% endhighlight %}
+ <div class="pre_container pre_dont">
+ {% highlight bash %}{{ guide }}{% endhighlight %}
+ <div class="pre_mark"><span class="glyphicon glyphicon-remove"></span></div>
+ </div>
{% endfor %}
</div>
</div>