This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo(object): | |
baz = 15 | |
@staticmethod | |
def bar(): | |
return Foo.baz | |
class Spam(Foo): | |
baz = 20 | |
s = Spam() |
NewerOlder