+
+ <% if (user) { %>
+
<%= user.name %>
+ <% } %>
+
+
+```
### [option 3]
-[example | description | pointer to more information | …]
+Rebuild the site using native Javascript templating (Template Literals)
-* Good, because [argument a]
-* Good, because [argument b]
-* Bad, because [argument c]
-* …
+* Good, because we are not dependent on 3rd-party tools
+* Good, because there's no need to maintain additional tools or fix vulnerabilities
+* Good, because no additional syntax or rules are needed to learn; uses standard javascript
+* Good, because rendering performance is expected to increase
+* Good, because code specific to a certain template can live in the same module
+* Good, because we're not restricted by previous template tool limitations
+* Bad, because established patterns are not as easy to find
+* Bad, because unknowns are more likely to exist and reveal in time
+
+Example code:
+```js
+// example.js template
+
+export const example = data => `
+