Skip to content

Commit

Permalink
Merge pull request #69 from things-nyc/update
Browse files Browse the repository at this point in the history
A bunch of small fixes
  • Loading branch information
jchonig authored Jan 24, 2024
2 parents f4b17d7 + 4afc26d commit fc4fa6b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
18 changes: 9 additions & 9 deletions docs/_includes/menubar.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,23 +57,23 @@
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownParticipate" role="button" data-bs-toggle="dropdown" aria-expanded="false">Participate</i></a>
<ul class="dropdown-menu {{ nav_color }}" aria-labelledby="navbarDropdownParticipate">
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://eepurl.com/ccBERT">Mailing List <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://www.meetup.com/The-Things-Network-NYC-Community-Meetup/">Meetup <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://things-nyc.slack.com/">Slack <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://masto.nyc/@thethingsnyc/">Mastodon <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://github.com/things-nyc">GitHub <i class="fa fa-external-link"></i></a>
</li>
</ul>
Expand All @@ -83,19 +83,19 @@
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownTTN" role="button" data-bs-toggle="dropdown" aria-expanded="false">TTN Global</a>
<ul class="dropdown-menu {{ nav_color }}" aria-labelledby="navbarDropdownTTN">
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://console.cloud.thethings.network/">Console <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://forum.thethingsnetwork.org/">Forum <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://thethingsnetwork.slack.com/">Slack <i class="fa fa-external-link"></i></a>
</li>
<li>
<a class="dropdown-item"
<a class="dropdown-item {{ nav_color }}"
href="https://thethingsnetwork.org/">WebSite <i class="fa fa-external-link"></i></a>
</li>
</ul>
Expand Down
6 changes: 3 additions & 3 deletions docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@
{{ content }}
{% endif %}

<div class="container mx-5 my-3">
<section class="container-fluid p-5">
<hr>
<div class="row">
<div class="col-lg-6">Copyright &copy; 2018-2024 The Things Network New York, Inc. 501(c)(3)</div>
<div class="col-lg-6">Copyright &copy; 2024 The Things Network New York, Inc. 501(c)(3)</div>
<div class="col-lg-2"></div>
<div class="col-lg-4">
<div class="col-lg-4 text-end">
<a href="http://github.com/things-nyc/things-nyc.github.io" target=_blank>Page Source <i class="fa fa-external-link"></i></a>,
Hosted by <a href="https://pages.github.com/" target=_blank>GitHub Pages <i class="fa fa-external-link"></i></a>.
</div>
Expand Down
7 changes: 4 additions & 3 deletions docs/blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
<div class="container text-primary text-center">
<h2>{{ page.title }}</h2>
</div>

<div class="container-fluid">
<div class="filter-box justify-content-sm-center mb-4">
<div class="btn btn-primary text-center" id="show-all">All</div>
<div class="filter-box justify-content-center mb-4">
<button class="btn btn-primary" id="show-all">All</button>
{% for tag_entry in site.tags %}
<div class="btn btn-primary text-center" id="show-{{ tag_entry[0] }}">{{ tag_entry[0] }}</div>
<button class="btn btn-primary" id="show-{{ tag_entry[0] }}">{{ tag_entry[0] }}</button>
{% endfor %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h3>{{ page.title }}'s Mission</h3>
</section>

<section id="learn" class="container">
<div class="container mx-5 mb-5 pt-2 bg-secondary bg-opacity-25">
<div class="container mx-5 mb-5 pt-3 bg-secondary bg-opacity-25">
<div class="row">
<div class="col-lg-7 text-left">
<h3>Learn about {{ page.title }}</h3>
Expand Down
4 changes: 2 additions & 2 deletions docs/repos.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ <h2 class="text-primary">{{ page.title }}</h2>

<div class="container-fluid">
<div class="filter-box justify-content-sm-center mb-4">
<div class="btn btn-primary text-center" id="show-all">All</div>
<button class="btn btn-primary text-center" id="show-all">All</button>
{% for topic in topics %}
<div class="btn btn-primary text-center" id="show-{{ topic }}">{{ topic }}</div>
<button class="btn btn-primary text-center" id="show-{{ topic }}">{{ topic }}</button>
{% endfor %}
</div>
</div>
Expand Down

0 comments on commit fc4fa6b

Please sign in to comment.