Skip to content

Commit d29985a

Browse files
committed
changes to header
1 parent db28f0e commit d29985a

File tree

2 files changed

+25
-30
lines changed

2 files changed

+25
-30
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/nodejs-12 as podmandevcontainer
33

44
USER root
55

6-
RUN dnf update -y && npm i -g @antora/cli@2.3 @antora/site-generator-default@2.3 \
6+
RUN dnf update -y && npm i -g @antora/cli@3.0 @antora/site-generator-default@3.0 \
77
&& dnf update -y \
88
&& npm rm --global npx && npm install --global npx && npm install --global gulp \
99
&& dnf clean all && rm -r /var/cache/dnf
@@ -17,8 +17,8 @@ RUN wget https://github.com/wercker/stern/releases/download/1.11.0/stern_linux_a
1717
RUN curl -L https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz | \
1818
tar -xvzf - -C /usr/local/bin/ oc && chmod 755 /usr/local/bin/oc && ln -s /usr/local/bin/oc /usr/local/bin/kubectl
1919

20-
# If running (rootless) podman, keep the root user so that outside the container it will match
20+
# If running (rootless) podman, keep the root user so that outside the container it will match
2121
# the host user. Otherwise run as default user
2222
FROM podmandevcontainer AS devcontainer
2323
RUN chown -R default $HOME
24-
USER default
24+
USER default

src/partials/header-content.hbs

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,35 @@
11
<header class="header">
22
<nav class="navbar">
33
<div class="navbar-brand">
4-
<a class="navbar-item" href="https://redhat.com" target="_blank"><img
5-
src="{{uiRootPath}}/img/logo.png" height="40px" alt="Cloud Native Architecture Solution Patterns"></a>
6-
<a class="navbar-item" style="font-size: 24px; color: white" href="{{{or site.url (or siteRootUrl siteRootPath)}}}">{{site.title}}</a>
4+
<a class="navbar-item" style="font-size: 20px; color: white"
5+
href="{{{or site.url (or siteRootUrl siteRootPath)}}}">
6+
<img src="{{uiRootPath}}/img/logo.png" height="35px" alt="Solution Patterns">&nbsp; {{site.title}}</a>
77
<button class="navbar-burger" data-target="topbar-nav">
8-
<span></span>
9-
<span></span>
10-
<span></span>
118
</button>
129
</div>
13-
<div id="topbar-nav" class="navbar-menu">
14-
<div class="navbar-end">
1510

16-
17-
<div class="navbar-item has-dropdown is-hoverable">
18-
<a class="navbar-link" href="#">Solution Patterns</a>
19-
<div class="navbar-dropdown">
20-
<a class="navbar-item" href="#">Adopt Change Data Capture for <br/>stack modernization</a>
21-
<a class="navbar-item" href="#">Edge-to-Cloud Pipelines</a> <a class="navbar-item" href="#">Event driven architecture</a>
22-
</div>
23-
</div>
11+
<div class="navbar-item"><span class="navbar-text"
12+
style="color: white; margin-left: 1rem; margin-right: 1rem;">|</span></div>
2413

25-
<div class="navbar-item has-dropdown is-hoverable">
26-
<a class="navbar-link" href="#">Other</a>
27-
<div class="navbar-dropdown">
28-
<a class="navbar-item" href="https://redhat-gitops-patterns.io/">GitOps Solution Patterns</a>
29-
<a class="navbar-item" href="https://hybrid-cloud-patterns.io/">Hybrid Cloud Solution Patterns</a>
30-
</div>
31-
</div>
32-
33-
<a class="navbar-item" target="_blank" href="https://www.redhat.com/en/products/middleware">Red Hat Application Services</a>
34-
35-
<a class="navbar-item" target="_blank" href="https://developers.redhat.com/middleware">Learn more</a>
14+
<div class="navbar-item has-dropdown is-hoverable">
15+
<a class="navbar-link" href="#" style="color: white">Architectures &amp; Patterns</a>
16+
<div class="navbar-dropdown">
17+
<a class="navbar-item" href="https://www.redhat.com/architect/portfolio/" target="_blank">Portfolio Architecture&nbsp; </a>
18+
<a class="navbar-item" href="https://redhat-solution-patterns.github.io/solution-patterns/patterns.html" target="_blank">Solution Patterns </a>
19+
<a class="navbar-item" href="https://validatedpatterns.io/" target="_blank">Validated Patterns&nbsp;</a>
20+
<a class="navbar-item" href="https://catalog.redhat.com/solutions" target="_blank">Ecosystem Solutions&nbsp;</a>
21+
</div>
22+
</div>
3623

24+
<div class="navbar-item has-dropdown is-hoverable">
25+
<a class="navbar-link" href="#" style="color: white">Resources</a>
26+
<div class="navbar-dropdown">
27+
<a class="navbar-item" target="_blank" href="https://developers.redhat.com">Red Hat Developers</a>
28+
<a class="navbar-item" target="_blank" href="https://developers.redhat.com/app-dev-platform">App Dev Platform</a>
29+
<a class="navbar-item" target="_blank" href="https://www.redhat.com/en/products/application-foundations">Red Hat Application Services</a>
3730
</div>
3831
</div>
32+
<a class="navbar-item" style="color: white" target="_blank" href="https://github.com/redhat-solution-patterns/redhat-solution-patterns.github.io/issues">Feedback</a>
33+
<a class="navbar-item" style="color: white" target="_blank" href="https://redhat-solution-patterns.github.io/solution-patterns/contributors-guide.html">Contribute</a>
3934
</nav>
4035
</header>

0 commit comments

Comments
 (0)