summaryrefslogtreecommitdiffhomepage
path: root/content/_index.html
diff options
context:
space:
mode:
authorIan Lewis <ianmlewis@gmail.com>2019-04-23 22:12:56 -0400
committerIan Lewis <ianlewis@google.com>2019-04-24 13:29:24 +0900
commit66cc254a8710cdaeb6e56bb45aec1e51f696660a (patch)
tree06adc0106908f744f857d4ee708a377726796e73 /content/_index.html
parent7853b971d43f773002ea92ecc95af7becd9dac55 (diff)
Fix feature block rendering (fixes #56)
- Render feature blocks as markdown again. - Feature block inner content is contained in a <div> rather than a <p> to avoid nested <p> tags.
Diffstat (limited to 'content/_index.html')
-rw-r--r--content/_index.html24
1 files changed, 12 insertions, 12 deletions
diff --git a/content/_index.html b/content/_index.html
index 7342997c5..70c863bc4 100644
--- a/content/_index.html
+++ b/content/_index.html
@@ -20,32 +20,32 @@ gVisor integrates with <a href="https://www.docker.com/" target="_blank" rel="no
{{< blocks/section color="dark" >}}
-{{< blocks/feature icon="fas fa-lock" title="Defense in Depth" >}}
+{{% blocks/feature icon="fas fa-lock" title="Defense in Depth" %}}
Each sandbox has its own user-space kernel, providing additional protection from host kernel vulnerabilities.
-{{< /blocks/feature >}}
+{{% /blocks/feature %}}
-{{< blocks/feature icon="fas fa-feather-alt" title="Lightweight" >}}
+{{% blocks/feature icon="fas fa-feather-alt" title="Lightweight" %}}
Runs as a normal process and uses the host kernel for memory management and scheduling.
-{{< /blocks/feature >}}
+{{% /blocks/feature %}}
-{{< blocks/feature icon="fab fa-linux" title="Zero Configuration" >}}
+{{% blocks/feature icon="fab fa-linux" title="Zero Configuration" %}}
Capable of running most Linux applications unmodified, with zero configuration.
-{{< /blocks/feature >}}
+{{% /blocks/feature %}}
{{< /blocks/section >}}
{{< blocks/section color="white" >}}
-{{< blocks/feature icon="fas fa-book" title="Read the Docs" >}}
+{{% blocks/feature icon="fas fa-book" title="Read the Docs" %}}
Read the [documentation](./docs/) to understand gVisor, its architecture and trade-offs, and how to use it.
-{{< /blocks/feature >}}
+{{% /blocks/feature %}}
-{{< blocks/feature icon="fas fa-code-branch" title="Contribute to gVisor" >}}
+{{% blocks/feature icon="fas fa-code-branch" title="Contribute to gVisor" %}}
Anyone is welcome to be a gVisor contributor. Please check out the [community information](./docs/community) to get started.
-{{< /blocks/feature >}}
+{{% /blocks/feature %}}
-{{< blocks/feature icon="fab fa-github" title="Give Feedback" >}}
+{{% blocks/feature icon="fab fa-github" title="Give Feedback" %}}
File feature requests, bugs, and compatibility issues on <a href="https://github.com/google/gvisor/issues" target="_blank" rel="noopener">GitHub</a>.
-{{< /blocks/feature >}}
+{{% /blocks/feature %}}
{{< /blocks/section >}}