Skip to content

Commit

Permalink
Add Honeybadger to the sponsors
Browse files Browse the repository at this point in the history
Add hotels to the Boulder guide
  • Loading branch information
bekkii77 committed Sep 8, 2024
1 parent 533e1a1 commit 9bbc78a
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 3 deletions.
6 changes: 5 additions & 1 deletion frontend/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ body {
}

.sponsor-sapphire {
@apply max-w-[300px];
@apply max-w-[325px];
& img {
@apply w-[325px];
}

}

.sponsor-emerald {
Expand Down
7 changes: 7 additions & 0 deletions src/_data/sponsors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
level: ruby
url: https://simiaruminfinitarum.com/
enabled: false
- name: Honeybadger
logo: honeybadger_logo.svg
footer_logo: honeybadger_logo_white.svg
level: sapphire
url: https://www.honeybadger.io/
enabled: true
footer: true
- name: AppSignal
logo: Appsignal-original-azure.png
footer_logo: Appsignal-original-white.png
Expand Down
2 changes: 1 addition & 1 deletion src/_partials/_location.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<p
class="text-lg leading-relaxed text-body-color sm:text-xl sm:leading-relaxed"
>
Discover Boulder, Colorado, where the breathtaking Rocky Mountain landscapes meet a vibrant city teeming with unique cultural experiences, an eclectic arts scene, and delectable cuisine. Boulder is a city that thrives on the outdoors, so you’ll find plenty of ways to enjoy the fresh mountain air, whether you’re hiking, biking, or simply strolling through the city’s many parks and the historic <a href="https://boulderdowntown.com" class="text-dark hover:text-primary" target="_blank">Pearl Street Mall</a>.
Discover Boulder, Colorado, where the breathtaking Rocky Mountain landscapes meet a vibrant city teeming with unique cultural experiences, an eclectic arts scene, and delectable cuisine. Boulder is a city that thrives on the outdoors, so you’ll find plenty of ways to enjoy the fresh mountain air, whether you’re hiking, biking, or simply strolling through the city’s many parks and the historic <a href="https://boulderdowntown.com" class="text-dark hover:text-primary" target="_blank">Pearl Street Mall</a>. Learn more about Boulder in our <a href="/boulder-guide" class="text-dark hover:text-primary">Boulder Guide</a>.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/_partials/_sponsor.erb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
href="<%= sponsor.url %>"
rel="nofollow noopner"
target="_blank"
class="mb-6 mr-5 block max-w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
class="mb-6 mr-5 block w-[120px] xl:max-w-[100px] 2xl:max-w-[120px]"
>
<img
src="/images/sponsors/<%= sponsor.footer_logo ? sponsor.footer_logo : sponsor.logo %>"
Expand Down
22 changes: 22 additions & 0 deletions src/boulder-guide.erb
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ activity_places = [
{href: 'https://www.colorado.com/articles/pearl-street-mall-beloved-boulder-attraction', inner_html: 'Pearl Street'},
{href: 'https://streetwisearts.org/walking-tours/', inner_html: 'Streetwise Boulder Mural Walking Tour'},
]

hotel_places = [
{href: 'https://www.thebradleyboulder.com', inner_html: 'The Bradley Boulder Inn'},
{href: 'https://www.boulderado.com', inner_html: 'Hotel Boulderado'},
{href: 'https://www.hilton.com/en/hotels/wbubogi-hilton-garden-inn-boulder/', inner_html: 'Hilton Garden Inn Boulder'},
{href: 'https://www.marriott.com/hotels/travel/denbo-boulder-marriott', inner_html: 'Marriott Boulder'}
]
%>
<div class="max-w-5xl mx-auto text-lg leading-relaxed text-[#404040] mb-20">
<h2 class="mb-4 text-3xl font-bold text-primary sm:text-4xl md:text-[42px]">
Expand Down Expand Up @@ -76,6 +83,21 @@ activity_places = [
</li>
</ul>
<% end %>
<h3 class="text-[28px] font-medium text-primary">Hotels</h3>
<div class="mb-10 w-full">
<% hotel_places.each do |place| %>
<ul>
<li class="px-3">
<a href="<%= place[:href] %>" target="_blank" rel="noopener noreferrer" class="text-primary hover:text-dark">
<%= place[:inner_html] %>
</a>
<address class="text-base leading-relaxed">
<%= place[:address] %>
</address>
</li>
</ul>
<% end %>
</div>
<h3 class="text-[28px] font-medium text-primary">Coffee</h3>
<div class="mb-10 w-full">
<% coffee_places.each do |place| %>
Expand Down
11 changes: 11 additions & 0 deletions src/images/sponsors/honeybadger_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/images/sponsors/honeybadger_logo_white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9bbc78a

Please sign in to comment.