diff --git a/bugheist/urls.py b/bugheist/urls.py index 92a16b547..4373a1ef2 100644 --- a/bugheist/urls.py +++ b/bugheist/urls.py @@ -53,6 +53,7 @@ url(r'^issue/comment/(?P\d+)/edit/$',comments.views.EditCommentPage, name='edit_comment'), url(r'^issue/comment/(?P\d+)/update/$',comments.views.EditComment, name='update_comment'), url(r'^issue/comment/(?P\d+)/delete/$',comments.views.DeleteComment, name='delete_comment'), + url(r'^social/$', TemplateView.as_view(template_name="social.html")), ) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/website/static/css/style.css b/website/static/css/style.css index e0d96d628..7a4ad3d81 100644 --- a/website/static/css/style.css +++ b/website/static/css/style.css @@ -42,6 +42,10 @@ body{ color: #dd4252; } +.social-feeds{ + color: #dd4252; +} + .start-tour{ color: #dd4252; } diff --git a/website/templates/base.html b/website/templates/base.html index 03b6a3390..32646016c 100644 --- a/website/templates/base.html +++ b/website/templates/base.html @@ -89,13 +89,16 @@ {% endif %} -
  • - + Add to chrome +
  • + + Add to chrome +
  • +
  • +
  • -
  • +
  • -
  • +
  • Tour
  • diff --git a/website/templates/social.html b/website/templates/social.html new file mode 100644 index 000000000..20bdbcb44 --- /dev/null +++ b/website/templates/social.html @@ -0,0 +1,14 @@ +{% extends "account/base.html" %} + +{% load i18n %} + +{% block title %}Social Feeds - Bugheist{% endblock %} + +{% block content %} +
    +
    + + +
    +
    +{% endblock %}