Add sponsor wall to showcase supporters
This commit is contained in:
parent
d56ff0e90f
commit
7ed4b3b288
|
@ -16,6 +16,9 @@
|
|||
<h1><a href="{{ "/" | absolute_url }}">{{ site.title }}</a></h1>
|
||||
{% endif %}
|
||||
|
||||
<!-- Navigation link to sponsor-wall.html added -->
|
||||
<p><a href="{{ '/sponsor-wall.html' | relative_url }}">Sponsor Wall</a></p>
|
||||
|
||||
{{ content }}
|
||||
|
||||
{% if site.github.private != true and site.github.license %}
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Sponsor Wall</title>
|
||||
<style>
|
||||
.grid-container {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto;
|
||||
padding: 10px;
|
||||
}
|
||||
.grid-item {
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Sponsor Wall</h1>
|
||||
</header>
|
||||
<p>This page is dedicated to all our amazing sponsors who have supported us. Thank you for your contributions!</p>
|
||||
<div class="grid-container">
|
||||
<!-- Sponsor logos will be added here -->
|
||||
<div class="grid-item">Sponsor 1 Logo</div>
|
||||
<div class="grid-item">Sponsor 2 Logo</div>
|
||||
<div class="grid-item">Sponsor 3 Logo</div>
|
||||
<!-- More sponsors can be added in similar divs -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue