diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/code.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/_layouts/code.html b/_layouts/code.html new file mode 100644 index 0000000..18cfb3b --- /dev/null +++ b/_layouts/code.html @@ -0,0 +1,10 @@ +--- +layout: default +--- + +{% capture body %}```{{ page.lang | default: "go" }} +{% include_relative {{ page.include }} %}```{% endcapture %} + +<br/><a href="{{ page.include }}">Raw source file</a> + +{{ body | markdownify }} |