Browse Source

logo update

graphics
Cailean Finn 4 weeks ago
parent
commit
98697c651c
  1. 23
      app.py
  2. 24
      public/css/styles.css
  3. 6
      templates/index.html

23
app.py

@ -16,7 +16,8 @@ client = contentful.Client(SPACE_ID, ACCESS_TOKEN)
@app.route('/')
def index():
return render_template('index.html', title='')
sup_img = get_support_images()
return render_template('index.html', title='', sup_img_list=sup_img)
@app.route('/events')
def events():
@ -107,6 +108,26 @@ def process_content(entries, type):
return content_list
def get_support_images():
# Specify the folder where images are stored
image_folder = os.path.join(app.static_folder, 'images/support')
# Define a list of supported image file extensions
valid_extensions = ['.jpg', '.jpeg', '.png', '.gif', '.bmp']
# List to hold the image file names
image_files = []
# Loop through files in the directory
for filename in os.listdir(image_folder):
# Check if the file is an image (by extension)
if os.path.splitext(filename)[1].lower() in valid_extensions:
image_files.append(filename)
print(filename)
return image_files
def format_datetime(dt):
date_str = dt.strftime('%d.%m.%y')
time_str = dt.strftime('%I%p').upper().lstrip('0')

24
public/css/styles.css

@ -238,6 +238,26 @@ hr {
text-transform: uppercase;
}
#index-support {
flex-direction: row;
display: flex;
gap: 25px;
margin-top: 50px;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.index-support-img {
width: 100px;
height: auto;
}
.index-support-img img {
width: 100%;
height: auto;
}
.socials {
position: absolute;
padding-top: 25px;
@ -766,6 +786,10 @@ animation: 2s fadeInUp;
/* Mobile breakpoint (less than 768px) */
@media (max-width: 768px) {
#index-support {
order: -2;
}
#index-socials{
order: -1;
}

6
templates/index.html

@ -43,7 +43,11 @@
</div>
<div id="index-support">
{% for img in sup_img_list %}
<div class="index-support-img">
<img src="{{ url_for('static', filename='images/support/' + img) }}">
</div>
{% endfor %}
</div>
</div>
<div id="container-index">

Loading…
Cancel
Save