redesign proto

This commit is contained in:
2025-04-15 12:18:03 -05:00
parent cdbbea7711
commit b9aee578c3
30 changed files with 2899 additions and 397 deletions
@@ -0,0 +1,149 @@
{% extends 'schasite/base2.html' %}
{% load static %}
{% block pagetitle %}
<title>Stonehedge Community Homeowners Association</title>
<style type="text/css">
/* Board Page Specific Styles */
.card-header h4 {
font-size: 1.25rem;
}
.board-member-img {
width: 150px;
height: 150px;
object-fit: cover;
border: 3px solid var(--bs-success);
}
.committee-card {
transition: transform 0.3s ease;
}
.committee-card:hover {
transform: translateY(-5px);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
/* Responsive adjustments */
@media (max-width: 767.98px) {
.board-member-img {
width: 120px;
height: 120px;
}
}
</style>
{% endblock %}
{% block content %}
<main class="py-5">
<div class="container">
<!-- Board Information -->
<div class="row justify-content-center mb-5">
<div class="col-lg-10">
<div class="card shadow-sm">
<div class="card-body text-center">
<h3 class="text-success mb-3">2025-2026 Stonehedge Community Homeowners Association Board</h3>
<p>The Stonehedge Community Homeowners Association is governed by a volunteer board of directors elected by the community members. Board members serve two-year terms and are responsible for overseeing the community's operations, finances, and enforcement of covenants.</p>
<p>Board meetings are held monthly and are open to all residents. <a href="../index.html#documents">View meeting schedule</a>.</p>
</div>
</div>
</div>
</div>
<!-- Board Members -->
<div class="row g-4">
{% for officer in officers %}
{% if officer %}
<div class="col-md-6 col-lg-4">
<div class="card h-100 shadow-sm">
<div class="card-header bg-success text-white text-center py-3">
<h4 class="mb-0">{{ officer.position }}</h4>
</div>
<div class="card-body text-center">
<img src="../images/board/john-smith.jpg" alt="John Smith" class="rounded-circle mb-3" width="150" height="150">
<h5 class="card-title">{{ officer.name }}</h5>
<!-- <p class="text-muted">Term: 2022-2024</p>
<p class="card-text">John has lived in Greenwood Estates since 2015 and brings 20 years of financial management experience to the board.</p> -->
<div class="d-flex justify-content-center">
<a href="mailto:{{ officer.email }}" class="btn btn-sm btn-outline-success me-2">
<i class="bi bi-envelope"></i> Email
</a>
<!-- <a href="tel:+15551234567" class="btn btn-sm btn-outline-success">
<i class="bi bi-telephone"></i> Call
</a> -->
</div>
</div>
</div>
</div>
{% else %}
<div class="col-md-6 col-lg-4">
<div class="card h-100 shadow-sm">
<div class="card-header bg-success text-white text-center py-3">
<h4 class="mb-0">TBD</h4>
</div>
<div class="card-body text-center">
<img src="../images/board/john-smith.jpg" alt="John Smith" class="rounded-circle mb-3" width="150" height="150">
<h5 class="card-title">TBD</h5>
<p class="text-muted">TBD</p>
<p class="card-text">TBD</p>
</div>
</div>
</div>
{% endif %}
{% endfor %}
<!-- Committees Section -->
<div class="row mt-5">
<div class="col-12">
<div class="card shadow-sm">
<div class="card-header bg-success text-white">
<h3 class="mb-0">HOA Committees</h3>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title text-success">Architectural Review</h5>
<p class="card-text">Reviews all exterior modification requests to ensure compliance with community standards.</p>
<p><strong>Chair:</strong> Robert Wilson</p>
<a href="mailto:architecture@greenwoodestates.org" class="btn btn-sm btn-outline-success">Contact Committee</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title text-success">Social & Events</h5>
<p class="card-text">Plans community events, holiday celebrations, and social gatherings.</p>
<p><strong>Chair:</strong> Lisa Martinez</p>
<a href="mailto:events@greenwoodestates.org" class="btn btn-sm btn-outline-success">Contact Committee</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<h5 class="card-title text-success">Landscape & Maintenance</h5>
<p class="card-text">Oversees common area maintenance and landscaping improvements.</p>
<p><strong>Chair:</strong> David Thompson</p>
<a href="mailto:landscape@greenwoodestates.org" class="btn btn-sm btn-outline-success">Contact Committee</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-3">
<a href="#" class="btn btn-success">Learn About Committee Opportunities</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
{% endblock %}