fork download
  1. {% load blog_tags %}
  2. {% load static %}
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>{% block title %}{% endblock %}</title>
  7. <link href= "{% static "css/blog.css" %}" rel="stylesheet">
  8. </head>
  9. <body>
  10. <div id="content">
  11.  
  12. {% block content %}
  13. {% endblock %}
  14. </div>
  15. <div id="sidebar">
  16. <h2>Блог пыльного</h2>
  17. <p>Теория, практика и философия деградации. {% total_posts %} поста.</p>
  18. <h3>Most commented posts</h3>
  19. {% get_most_commented_posts as most_commented_posts %}
  20. <ul>
  21. {% for post in most_commented_posts %}
  22. <li>
  23. <a href="{{ post.get_absolute_url }}">{{ post.title }}</a>
  24. </li>
  25. {% endfor %}
  26. </ul>
  27.  
  28. </div>
  29. </body>
  30. </html>
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:1: error: class, interface, or enum expected
{% load blog_tags %}
^
1 error
stdout
Standard output is empty