templates/post_details.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block content %}
  3.     {{ post.title }}
  4.     {{ post.embed|raw }}
  5. {% endblock content %}
  6. {% block javascripts %}
  7.     <script>
  8.         $(document).ready(function(){
  9.         });
  10.     </script>
  11. {% endblock javascripts %}