diff --git a/_layout.html b/_layout.html index 6898e7565..ba53ec859 100644 --- a/_layout.html +++ b/_layout.html @@ -8,6 +8,7 @@ @css "app.css?43" + @@ -58,6 +59,8 @@ @end @define "footer" + + @end diff --git a/app.css b/app.css index 48b941cb5..16c443b5e 100644 --- a/app.css +++ b/app.css @@ -249,6 +249,17 @@ textarea:focus { color: #c5ac41 } +.codeblock pre.language-v { + padding: 0; + background: #334; + padding-bottom: 10px; +} + +.codeblock pre code.language-v { + display: block; + line-height: 1.2 !important; +} + .documentation { display: flex; justify-content: center; diff --git a/index.html b/index.html index 75eaeb2d1..41c67e030 100644 --- a/index.html +++ b/index.html @@ -176,15 +176,14 @@

The V Programming Language 0.4
-
fn main() {
+  
fn main() {
     areas := ['game', 'web', 'tools', 'science', 'systems',
               'embedded', 'drivers', 'GUI', 'mobile']
     for area in areas {
         println('Hello, ${area} developers!')
     }
-}
- +