Advertisement
Guest User

Untitled

a guest
May 30th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. {% extends 'layout.twig' %}
  2.  
  3.  
  4. {% block title %}{{ book.get('title') }}{% endblock %}
  5.  
  6. {% block content %}
  7. <div class="container">
  8. <div class="row">
  9. <div class="col-md-6">
  10. <h3><b>{{ book.get('title') }}</b></h3>
  11. </div>
  12. <div class="col-md-6">
  13. <h3>by <i>{{ book.get('author') }}</i></h3>
  14. </div>
  15. </div>
  16. <div class="row">
  17. <div class="col-md-6">
  18. <h4>{{ book.get('company') }}</h4>
  19. </div>
  20. <div class="col-md-6">
  21. <h4>{{ book.get('edition') }}º edition</h4>
  22. </div>
  23. </div>
  24. <div class="row">
  25. <div class="col-md-12">
  26. <h4>Description</h4>
  27. <p><b>{{ book.get('description') }}</b></p>
  28. </div>
  29. </div>
  30. </div>
  31. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement