From 32d5f46f9ccc3dbd10e02e8f2daec901821e66e9 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 3 Jan 2024 20:00:00 +0000 Subject: [PATCH] Add glossary page --- source/_pages/glossary.html.twig | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 source/_pages/glossary.html.twig diff --git a/source/_pages/glossary.html.twig b/source/_pages/glossary.html.twig new file mode 100644 index 00000000..23164c81 --- /dev/null +++ b/source/_pages/glossary.html.twig @@ -0,0 +1,34 @@ +--- +title: Glossary +terms: + - + - Automated Testing + - + - CI pipeline + - + - Continuous integration + - | + The process of continuously integrating your code with other people's code, i.e. at least once a day. + This is done by regularly pulling and merging everyone else's code with yours and pushing yours so it's available for others to do the same. This can also refer to CI pipelines and tools like GitHub Actions and GitLab CI. + - + - Continuous Delivery and Deployment + - + - Git + - + - PHPStan + - + - Static analysis + - + - Test-Driven Development + - + - Trunk-based Development + - + - Version control +--- + +
+ {% for term in page.terms if term.1 %} +
{{ term.0 }}
+
{{ term.1 }}
+ {% endfor %} +