NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

box.html 955B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <div class="p2p-box" {{attributes}}>
  2. <p class="help">{{help}}</p>
  3. {{#connections}}
  4. <table class="p2p-connections" {{{hide}}}>
  5. <thead>
  6. <tr>
  7. {{#thead}}
  8. <th class="p2p-col-{{column}}">{{{title}}}</th>
  9. {{/thead}}
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {{#tbody}}
  14. {{>table-row}}
  15. {{/tbody}}
  16. </tbody>
  17. </table>
  18. {{/connections}}
  19. {{#create-connections}}
  20. <div class="p2p-create-connections" {{{hide}}}>
  21. <p class="p2p-toggle-tabs"><a href="#">+ {{{label}}}</a></p>
  22. <div class="p2p-create-connections-tabs" style="display: none">
  23. {{#show-tab-headers}}
  24. <ul class="wp-tab-bar clearfix">
  25. {{#tabs}}
  26. <li {{#is-active}}class="wp-tab-active"{{/is-active}} data-ref=".p2p-tab-{{tab-id}}"><a href="#">{{{tab-title}}}</a></li>
  27. {{/tabs}}
  28. </ul>
  29. {{/show-tab-headers}}
  30. {{#tabs}}
  31. <div class="p2p-tab-{{tab-id}} tabs-panel">
  32. {{{tab-content}}}
  33. </div>
  34. {{/tabs}}
  35. </div>
  36. </div>
  37. {{/create-connections}}
  38. </div>