This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>{{name}}</h2> | |
<ul> | |
{{#subItems}} | |
<li> | |
Sub Item name: {{name}} | |
Parent Item name: {{?!}} | |
parent name is inaccessible since the subItem has a name property :( | |
how is this not a common use case? | |
</li> | |
{{/subItems}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
body { | |
margin: 40px; | |
} | |
a { | |
display: inline-block; |