Skip to content

Commit

Permalink
new-update
Browse files Browse the repository at this point in the history
  • Loading branch information
omirzakov committed May 6, 2020
1 parent 2c98ffa commit 5ae09ea
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Project/Main/Miri/templates/Miri/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

{% block content %}

<h1>Hello world</h1>
<div class="test-class">Hello world</div>


{% endblock %}
5 changes: 5 additions & 0 deletions Project/Main/static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.test-class {
border: 2px dashed black;
padding: 10px 5px;
width: max-content;
}
2 changes: 1 addition & 1 deletion Project/Main/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{% endblock %}
</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
Expand Down Expand Up @@ -39,7 +40,6 @@
<a class="nav-link disabled" href="#">Disabled</a>
</li>


{% if user.is_authenticated %}
<li class="nav-item">
<a id="ff" class="nav-link" href="{% url 'logout_url' %}">Log Out</a>
Expand Down

0 comments on commit 5ae09ea

Please sign in to comment.