Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream (July 2nd, 2024) #251

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a4329e6
Fix docker spin up steps (#2)
Mar 3, 2023
d5614e9
Remove legacy authentication section from _config.yml
timwis Mar 14, 2023
a41c677
Fix git permissions so gh-pages can pull info from git-remotes
Mar 14, 2023
ac878be
Update files to exclude from build
Mar 16, 2023
abe99e3
Merge pull request #255 from timwis/remove-auth-from-config
timwis Mar 20, 2023
0d2a72c
Merge pull request #258 from timwis/v2_config_excluded_files
timwis Mar 20, 2023
e35657b
Add npm to docker container and instructions for use
Mar 16, 2023
9bca30d
Upgrade to bootstrap v5 in markup + fixes
timwis Mar 1, 2023
1a0667e
Upgrade bootstrap to v5 in package.json
Mar 20, 2023
7a9f089
Upgrade-related class name changes
Mar 20, 2023
ef72a4b
Add background back to breadcrumb
Mar 21, 2023
a481391
Drop deprecated media class
Mar 23, 2023
a281c4e
Merge pull request #260 from lydiascarf/lydiascarf/10-upgrade-to-boot…
timwis Mar 24, 2023
5de5991
Several UI Tweaks - categories, but mostly datasets page
Mar 27, 2023
7bbb321
Custom hero image
Mar 27, 2023
95f9e69
Homepage tweaks
Mar 29, 2023
758556e
Merge pull request #263 from lydiascarf/homepage-tweaks
timwis Mar 30, 2023
e1bbde6
Merge pull request #245 from timwis/v2
timwis Mar 30, 2023
cd1f7bf
Make categories into cards
Mar 30, 2023
48f6433
Make organizations into cards, rename grid styles
Mar 30, 2023
d839ca0
Merge pull request #267 from lydiascarf/ui-tweaks
timwis Apr 4, 2023
f4e3592
Fix mobile navbar dropdown functionality
timwis Apr 4, 2023
f2ab8f3
Bump nokogiri from 1.13.9 to 1.14.3
dependabot[bot] Apr 12, 2023
fe47ee2
Bump commonmarker from 0.23.6 to 0.23.9
dependabot[bot] Apr 13, 2023
17e34c2
Bump activesupport from 6.0.6 to 6.0.6.1
dependabot[bot] Apr 13, 2023
f04e1f5
Upgrade to Jekyll 4.3
BryanQuigley Apr 13, 2023
3487a81
Update .ruby-version to 3.2.2
timwis Apr 19, 2023
3dcdfc8
Update other Jekyll plugins that might be required
BryanQuigley Apr 23, 2023
534d0b5
Open in Github link should go to code, not preview
lydiascarf Sep 5, 2023
1758cab
Robustness improvements
BryanQuigley Aug 19, 2023
071ed3c
Drop IE11 support and remove unmaintained depends
BryanQuigley Aug 17, 2023
5912caf
Switch from deprecated nodejs/npm install to just using the version b…
BryanQuigley Sep 26, 2023
9788311
Bump versions so no GitHub deprecated warnings
BryanQuigley Mar 19, 2024
aea153f
Markdownify orgs and datasets
BryanQuigley Apr 25, 2023
62844c8
Merge remote-tracking branch 'jkan/main' into 20240702-merge-upstream
lydiascarf Jul 2, 2024
55ce847
Delete sample opendataphilly dataset
lydiascarf Jul 2, 2024
4b6db31
Hide Github logo on mobile
lydiascarf Jul 2, 2024
8e434a9
Tweak navbar icon style
lydiascarf Jul 2, 2024
ddd1e27
Fix site description display
lydiascarf Jul 2, 2024
5812965
Merge remote-tracking branch 'origin/main' into 20240702-merge-upstream
lydiascarf Jan 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
FROM ruby:3.2-bullseye
FROM ruby:3.2-bookworm

ENV NODE_MAJOR_VERSION 18

RUN curl --silent --show-error --location --retry 5 --retry-connrefuse --retry-delay 4 https://deb.nodesource.com/setup_${NODE_MAJOR_VERSION}.x | bash - \
&& apt-get update \
&& apt-get install -y --quiet --no-install-recommends \
nodejs
RUN apt-get update \
&& apt-get install -y --quiet --no-install-recommends \
nodejs npm

ENV GEM_HOME=/usr/gem
ENV PATH="$GEM_HOME/bin/:$PATH"
Expand Down
7 changes: 3 additions & 4 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<nav class="navbar navbar-expand-sm mb-4 navbar-light" data-component="navigation">
<nav class="navbar navbar-expand-sm mb-4 navbar-dark" data-component="navigation">
<div class="container">
<a alt="{{ site.title }}" class="navbar-brand" href="{{ site.baseurl }}/">
<img src="{{ site.logo }}" srcset="/img/odp-logo@2x.png 2x" alt="OpenDataPhilly" title="OpenDataPhilly">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
Expand All @@ -18,7 +17,7 @@
{% endfor %}
</ul>
</div>
<a class="github-logo" href="https://github.com/azavea/opendataphilly-jkan">
<a class="github-logo d-none d-md-block" href="https://github.com/azavea/opendataphilly-jkan">
<img src="{{site.baseurl}}/img/github-mark-white.svg" width="30" height="30">
</a>

Expand Down
4 changes: 4 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ nav {
padding-top: 2rem !important;
}

.navbar-toggler {
border: none;
}

.nav-item .active {
background-color: #20c3c4;
border-radius: 4px;
Expand Down
Loading