-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
=> there's still a couple things i have questions about but those are mostly minor css-type things
- Loading branch information
1 parent
5e8cec6
commit e46c57d
Showing
7 changed files
with
87 additions
and
6 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
app/programs/migrations/0005_individualprogrampage_bottom_banner_text_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.2.7 on 2024-05-21 16:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('programs', '0004_individualprogrampage_more_programs_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='individualprogrampage', | ||
name='bottom_banner_text', | ||
field=models.CharField(default='Check out the many opportunities to get involved with HOT!'), | ||
), | ||
migrations.AddField( | ||
model_name='individualprogrampage', | ||
name='bottom_banner_url', | ||
field=models.URLField(blank=True), | ||
), | ||
migrations.AddField( | ||
model_name='individualprogrampage', | ||
name='bottom_banner_url_text', | ||
field=models.CharField(default='Get Involved with HOT'), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
app/programs/migrations/0006_alter_individualprogrampage_bottom_banner_text.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.7 on 2024-05-21 16:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('programs', '0005_individualprogrampage_bottom_banner_text_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='individualprogrampage', | ||
name='bottom_banner_text', | ||
field=models.CharField(default='Check out many opportunities to get involved with HOT!'), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
app/programs/migrations/0007_alter_individualprogrampage_bottom_banner_text.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.7 on 2024-05-21 17:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('programs', '0006_alter_individualprogrampage_bottom_banner_text'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='individualprogrampage', | ||
name='bottom_banner_text', | ||
field=models.CharField(default='Check out the many opportunities to get involved with HOT!'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
app/ui/templates/ui/components/FooterBannerWithTextAndLink.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
<div class="bg-hot-off-white"> | ||
<h1> | ||
{{ text }} | ||
</h1> | ||
|
||
<div class="max-w-7xl p-12 text-center"> | ||
<h1 class="text-h2 font-bold mb-8"> | ||
{{ text }} | ||
</h1> | ||
<a href="{{ url }}"> | ||
{% include "components/branded_elements/button.html" with text=buttontext %} | ||
</a> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!-- Resolution: Added 'tabindex=0' to the element to fix an issue where the focus ring was not appearing in Safari. This makes the element focusable and ensures the focus ring is displayed. --> | ||
<button tabindex="0" | ||
class="font-regular font-archivo h-hot-4 text-base-18 bg-hot-red text-hot-white px-hot-3 hover:bg-hot-off-white hover:text-hot-red focus:bg-transparent focus:text-hot-red focus:ring-2 focus:ring-hot-red focus:ring-inset {{ classes }}"> | ||
class="font-medium font-archivo h-hot-4 text-intro bg-hot-red text-hot-white px-hot-3 hover:bg-hot-off-white hover:text-hot-red focus:bg-transparent focus:text-hot-red focus:ring-2 focus:ring-hot-red focus:ring-inset {{ classes }}"> | ||
{{ text }} | ||
</button> |