酒店预订平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 209 B

3 years ago
123456789101112
  1. {{include './public/header'}}
  2. <div id="main">
  3. <h3>{{title}}</h3>
  4. <ul>
  5. {{each list}}
  6. <li><a href="{{$value.url}}">{{$value.title}}</a></li>
  7. {{/each}}
  8. </ul>
  9. </div>
  10. {{include './public/footer'}}