Update initStars function to include new sections, and reposition text elements in contact and sponsors HTML templates. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 75bceff7-98f2-4f6e-ae8e-e735399a1fe8 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 551d53d0-8bb9-484f-a2af-ac206e52585e Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/75bceff7-98f2-4f6e-ae8e-e735399a1fe8/a9ZWif3
31 lines
1016 B
HTML
31 lines
1016 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Technical Turbulence - Sponsors{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="sponsors">
|
|
<br>
|
|
<h1 class="heading" id="spon"><span class="emoji sponsors">Sponsors</span></h1>
|
|
<hr>
|
|
<p class="info">❤️ companies of various sizes sponsor our initiatives. ❤️</p>
|
|
<div class="team-info">
|
|
<div class="content-container">
|
|
<div class="sponsors-container">
|
|
<div class="card-container">
|
|
{% for sponsor in sponsors %}
|
|
<a href="{{ sponsor.website_url }}" target="_blank" class="card-sponsors">
|
|
<div class="card-content-sponsors">
|
|
<img src="{{ url_for('static', filename=sponsor.logo_path) }}" alt="{{ sponsor.name }}">
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|