aboutsummaryrefslogtreecommitdiffstats
path: root/examples/djangoproject/djangoproject/templates/index.html
blob: 7d7ba95456a5ac80a7edc1f2fa81684883ae0558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends 'base.html' %}

{% load sneak_peek %}


{% block content %}

{% sneak_peek %}
	<div>
		This will be hidden from users who don't have the sneak peek permission.
	</div>
{% endsneak_peek %}

{% sneak_peek "borderless" %}
	<div>
		This paragraph appears borderless.
	</div>
{% endsneak_peek %}

{% endblock %}