Skip to content

Commit b5b8bbe

Browse files
committed
examples/deepzoom: Rename template
1 parent ca48866 commit b5b8bbe

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

examples/deepzoom/deepzoom_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def index():
6767
slide_url = url_for('dzi', slug=SLIDE_NAME)
6868
associated_urls = dict((name, url_for('dzi', slug=slugify(name)))
6969
for name in app.associated_images)
70-
return render_template('index.html', slide_url=slide_url,
70+
return render_template('slide-multipane.html', slide_url=slide_url,
7171
associated=associated_urls, properties=app.slide_properties)
7272

7373

examples/deepzoom/deepzoom_tile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def _write_html(self):
183183
import jinja2
184184
env = jinja2.Environment(loader=jinja2.PackageLoader(__name__),
185185
autoescape=True)
186-
template = env.get_template('index.html')
186+
template = env.get_template('slide-multipane.html')
187187
associated_urls = dict((n, self._url_for(n))
188188
for n in self._slide.associated_images)
189189
# Embed the dzi metadata in the HTML to work around Chrome's

0 commit comments

Comments
 (0)