Skip to content

Commit

Permalink
Use Bulma as CSS Framework
Browse files Browse the repository at this point in the history
  • Loading branch information
Merlin Buczek committed May 5, 2019
1 parent 0f1c738 commit a413214
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions mpicms/static/css/bulma.min.css

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions mpicms/templates/base.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MolGen CMS</title>
<link rel="stylesheet" href="{% static 'css/bulma.min.css' %}">
</head>
<body>
{% include 'menus/main.html' %}
{% block content %}
{% endblock %}
</body>
</html>

0 comments on commit a413214

Please sign in to comment.