pidgin/nest

Remove extra padding around code blocks.

2019-08-21, Elliott Sales de Andrade
8955ee042c3c
Remove extra padding around code blocks.

This causes an annoying resize of the block when the copy button is
added, but the padding isn't really needed anyway.
<footer id="footline">
<div id="page-info">
<div>
{{ with .Params.LastModifierDisplayName }}
{{ if $.Params.LastModifierEmail }}
<a href="mailto:{{ $.Params.LastModifierEmail }}">
<i class='fas fa-user'></i> {{ . }}
</a>
{{ else }}
<i class='fas fa-user'></i> {{ . }}
{{ end }}
{{ else }}
<i class='fas fa-user'></i> {{ T "Anon" }}
{{ end }}
</div>
<div>
<i class='fas fa-calendar'></i>
{{ with $.Lastmod }}
{{ T "Modified" }} {{ .Format "02/01/2006" }}
{{ else }}
{{ T "Last-Modified-Not-Found" }}
{{ end }}
</div>
</div>
{{ partial "supporters.html" . }}
<div>
{{ with .Site.Menus.footline }}
<ul id="footline-columns">
{{ range sort . "Weight" }}
<li>
{{ .Pre }}
<a href="{{ .URL | absLangURL }}">{{ safeHTML .Name }}</a>
{{ .Post }}
</li>
{{ end }}
</ul>
{{ end }}
{{ with .Site.Menus.shortcuts }}
<ul id="footline-columns">
{{ range sort . "Weight" }}
<li>
{{ .Pre }}
<a href="{{ .URL | absLangURL }}">{{ safeHTML .Name }}</a>
{{ .Post }}
</li>
{{ end }}
</ul>
{{ end }}
<div id="footline-columns">
<p>
&copy; Pidgin <br/>
</p>
<div class="footline-license">
{{ T "License" }}:
<ul>
<li>
{{ T "Content" }} - GPL3
</li>
<li>
<a href="https://github.com/matcornic/hugo-theme-learn">{{ T "Theme" }}</a> - MIT<br/>
</li>
</ul>
</div>
</div>
</div>
</footer>
<div class="build-info">
Hugo: {{ now.Format "02 Jan 06 15:04" }}
- Job:
{{ with getenv "BUILD_NAME" }}{{ . }}{{ else }}n/a{{ end }}
{{ with getenv "BUILD_DATE" }}{{ . | time.Format "02 Jan 06 15:04" }}{{ else }}n/a{{ end }}
- Commit: {{ with getenv "COMMIT" }}{{ . }}{{ else }}n/a{{ end }}
- Hugo Version: {{ hugo.Version }}
- {{ hugo.Environment }}
</div>