Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNIKOLAOS CHRISTOU
4,724 PointsHome button
I have a problem with css, I use Django 1.11 with Pycharm, everything ok but they don't pass the css.
{% load static from staticfiles %}
<!DOCTYPE html> <html> <head> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" href ="{% static 'css/layout.css' %}"> </head> <body> <div class="site-container"> <nav> <a href="{% url 'hello_world' %}">Home</a> <a href="{% url 'course_list' %}">Courses</a> </nav> {% block content %}{% endblock %} </div> </body> </html>
2 Answers
Cristiano Porto
5,850 PointsNot sure what you mean, you weren't very clear on your question and on your code.
NIKOLAOS CHRISTOU
4,724 PointsHi,
I can not make the purple button as you can see in the video. I think my code is correct.
https://teamtreehouse.com/library/url-tag
Thanks