diff options
Diffstat (limited to '_notes/bash.html')
-rw-r--r-- | _notes/bash.html | 12 |
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> |