Skip to content

Instantly share code, notes, and snippets.

View tyteen4a03's full-sized avatar

Timothy Choi tyteen4a03

View GitHub Profile
<section>
<h1 class="h3">{{ galleryTitle }} (click on each picture to enlarge image)</h1>
{% for image, caption in galleryContent|batch(5) %}
<div style="margin: auto;">
<a rel="{{ galleryID }}" href="{{ image }}" class="swipebox" title="{{ caption }}">
<img src="{{ image }}" alt="image" style="width: 15%; height: auto;">
</a>
</div>
{% endfor %}
</section>
class Foo(object):
baz = 15
@staticmethod
def bar():
return Foo.baz
class Spam(Foo):
baz = 20
s = Spam()