mirror of
https://gitlab.com/redline-racing-division/redline-racing-website.git
synced 2025-06-16 15:17:22 +00:00
19 lines
390 B
Python
19 lines
390 B
Python
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)
|