1
0
mirror of https://gitlab.com/redline-racing-division/redline-racing-website.git synced 2025-07-30 18:11:31 +00:00

fancy shirt site

This commit is contained in:
2020-01-23 14:10:33 -07:00
parent b39560ec76
commit c2b9d56372
100 changed files with 15109 additions and 0 deletions

18
shirt/shirt.py Normal file
View File

@@ -0,0 +1,18 @@
snippet = ""
for count in range(1, 21):
code = f"""
<figure class="col-md-4">
<a
href="https://redlineracingdivision.com/"
data-size="1600x1067"
>
<img
alt="picture"
src="shirts/{count}.png"
class="img-fluid"
/>
</a>
</figure>
"""
snippet += code
print(snippet)