diff options
| author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-03-31 02:06:41 +0300 | 
|---|---|---|
| committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2022-03-31 02:06:41 +0300 | 
| commit | 3c7230c191ade30d5b9c8ef02a019ba42ab519f5 (patch) | |
| tree | 7e85927e11ae604020c547cfe62c3aaa18cfe6f8 /assets/templates/index.html | |
| parent | c251b0d5a905f19498e1d3312041b794e57fd2f8 (diff) | |
| download | revela-3c7230c191ade30d5b9c8ef02a019ba42ab519f5.tar.gz revela-3c7230c191ade30d5b9c8ef02a019ba42ab519f5.zip | |
Ready for packagingv0.1.0
* Documentation
* make install/uninstall
* roscha truthy fix
* Other fixes/improvements
Diffstat (limited to 'assets/templates/index.html')
| -rw-r--r-- | assets/templates/index.html | 31 | 
1 files changed, 16 insertions, 15 deletions
| diff --git a/assets/templates/index.html b/assets/templates/index.html index 61160a5..bf62607 100644 --- a/assets/templates/index.html +++ b/assets/templates/index.html @@ -11,23 +11,24 @@  	{% endfor %}  	</p>  	{% for year in years %} -	<h2 id="{{ year.name }}">{{ year.name }}</h2> -	{% for album in year.albums %} -	{% if album.title %} -	<a href="{{ album.link }}"><h3>{{ album.title }}</h3></a> -	{% else %} -	<a href="{{ album.link }}"><h3>Untitled</h3></a> -	{% endif %} -	<div class="album-container"> -		{% for thumb in album.thumbs %} -			{% if loop.index < 4 %} -			<a href="{{ thumb.link }}"> -				<img class="thumbnail" src="{{ thumb.source }}"> -			</a> +		<h2 id="{{ year.name }}">{{ year.name }}</h2> +		{% for album in year.albums %} +			{% if album.title %} +			<a href="{{ album.link }}"><h3>{{ album.title }}</h3></a> +			{% else %} +			<a href="{{ album.link }}"><h3>Untitled</h3></a>  			{% endif %} +			<div class="album-container"> +				{% for thumb in album.thumbs %} +				{% if loop.index >= 4 %} +				{% break %} +				{% endif %} +				<a href="{{ thumb.link }}"> +					<img class="thumbnail" src="{{ thumb.source }}"> +				</a> +				{% endfor %} +			</div>  		{% endfor %} -	</div> -	{% endfor %}  	{% endfor %}  </div>  {% endblock %} | 
