mirror of
https://gitlab.com/redline-racing-division/redline-racing-website.git
synced 2025-06-15 22:56:44 +00:00
17 lines
473 B
Python
17 lines
473 B
Python
snippet = ""
|
|
for count in range(1, 21):
|
|
code = f"""
|
|
<article class="thumb">
|
|
<a href="shirts/{count}.png" class="image"
|
|
><img src="shirts/{count}.png" alt=""
|
|
/></a>
|
|
<!-- <h2>Magna feugiat lorem</h2> -->
|
|
<!-- <p>
|
|
Nunc blandit nisi ligula magna sodales lectus elementum non. Integer
|
|
id venenatis velit.
|
|
</p> -->
|
|
</article>
|
|
"""
|
|
snippet += code
|
|
print(snippet)
|