Skip to content

Instantly share code, notes, and snippets.

@rokj
Created January 17, 2019 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rokj/81e83791dae8fed8c93e4b386c639d64 to your computer and use it in GitHub Desktop.
Save rokj/81e83791dae8fed8c93e4b386c639d64 to your computer and use it in GitHub Desktop.
blog.html
<!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