Created
January 17, 2019 16:46
-
-
Save rokj/81e83791dae8fed8c93e4b386c639d64 to your computer and use it in GitHub Desktop.
blog.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title>Moj Blog</title> | |
<link rel="stylesheet" href="/assets/css/blog.css"> | |
</head> | |
<body> | |
<h1>To je moj prvi vnos!</h1> | |
<div>To je pa nek text</div> | |
{% if sporocilo %} | |
{{ sporocilo }} | |
<br /> | |
<div style="color: red;">{{ tisto_kar_sem_vnesel_plus_nekaj }}</div> | |
{% else %} | |
{% if ime and priimek %} | |
<div>{{ ime }}</div> | |
<div>{{ priimek }}</div> | |
{% else %} | |
<div>Ime in priimek nista nastavljena</div> | |
{% endif %} | |
<form method="post"> | |
<input type="text" placeholder="Vnesi komentar" id="vnos" name="vnos" /> | |
<button type="submit">Objavi</button> | |
</form> | |
{% endif %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment