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

Demo Frontend Branch - DO NOT MERGE #14

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
with:
fail-mode: true

# Nix-specific logic begins here
- name: Nix Check
run: |
nix flake check
Expand Down
2 changes: 1 addition & 1 deletion release/obd-kardinal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ spec:
spec:
containers:
- name: server
image: kurtosistech/frontend:main
image: kurtosistech/frontend:demo-frontend
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
Expand Down
4 changes: 4 additions & 0 deletions src/frontend/static/styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,10 @@ main {
}
}

.home .container-fluid {
background-color: #de9580;
}

.home-mobile-hero-banner {
height: 200px;
background: url(/static/images/folded-clothes-on-white-chair-wide.jpg) no-repeat top center;
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<div class="row hot-products-row px-xl-6">

<div class="col-12">
<h3>Hot Products</h3>
<h3>The Hottest Products 🔥</h3>
</div>

{{ range $.products }}
Expand Down Expand Up @@ -75,4 +75,4 @@ <h3>Hot Products</h3>
{{ template "footer" . }}
</div>

{{ end }}
{{ end }}
Loading