mirror of
https://gitlab.com/redline-racing-division/redline-racing-website.git
synced 2025-06-15 22:56:44 +00:00
25 lines
746 B
Python
25 lines
746 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
|
|
|
|
for count in range(1, 21):
|
|
code = f"""
|
|
<div>
|
|
<input type="checkbox" id="{count}" name="{count}" />
|
|
<label for="{count}">Shirt {count}</label>
|
|
</div>"""
|
|
snippet += code
|
|
print(snippet)
|