Remove the index.html in the urls.

This commit is contained in:
Simon
2012-12-14 22:13:50 +01:00
parent 993602a46b
commit 7c68cf85dc
2 changed files with 5 additions and 6 deletions

View File

@@ -19,7 +19,7 @@
<div class="container">
<header>
<h1>{{ paths }}</h1>
<!-- <h1><a href="{{ home_path }}">{{ gallery_name }}</a>{% if title %} - {{ title }}{% endif %}</h1> -->
<!-- <h1><a href="{{ index_url }}">{{ gallery_name }}</a>{% if title %} - {{ title }}{% endif %}</h1> -->
</header>
<div id="main" role="main">

View File

@@ -103,16 +103,15 @@ class Writer():
ctx = copy.deepcopy(self.ctx)
ctx['theme']['path'] = os.path.relpath(self.theme_path, path)
ctx['home_path'] = os.path.join(
os.path.relpath(self.output_dir, path), INDEX_PAGE)
ctx['index_url'] = os.path.relpath(self.output_dir, path) + '/'
# paths to upper directories (with titles and links)
tmp_path = relpath
ctx['paths'] = do_link(INDEX_PAGE, paths[tmp_path]['title'])
ctx['paths'] = do_link('.', paths[tmp_path]['title'])
while tmp_path != '.':
tmp_path = os.path.normpath(os.path.join(tmp_path, '..'))
link = os.path.relpath(tmp_path, relpath) + "/" + INDEX_PAGE
link = os.path.relpath(tmp_path, relpath) + '/'
ctx['paths'] = do_link(link, paths[tmp_path]['title']) + \
PATH_SEP + ctx['paths']
@@ -136,7 +135,7 @@ class Writer():
quality=self.settings['jpg_quality'])
ctx['albums'].append({
'path': os.path.join(d, INDEX_PAGE),
'path': d + '/',
'title': paths[dpath]['title'],
'thumb': os.path.join(d, thumb_name)
})