This repository has been archived on 2025-04-15. You can view files and clone it, but cannot push or open issues or pull requests.
unesco-tracker/views/site-listing.pug

21 lines
477 B
Plaintext

extends layout
block content
h1= title
h2= "Sites: " + sites.length
each site in sites
div(class="listing")
h3(class="site") #[a(class="remaining" href="/sites/" + site.slug) #{site.site}]
//- Commmand list of all the states
h5(class="state")
- var states = site.states.split(',')
- for (var i = 0; i < states.length; i++)
| #{states[i]}
if (i + 1 < states.length)
| ,
include footer.pug