Skip to content
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Base mongo image.
FROM ubuntu:focal

# Install Node/NPM/NPX.
RUN apt-get update && apt-get install -y curl
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
# Install Node/NPM/NPX and build tools.
RUN apt-get update && apt-get install -y curl build-essential python3 libkrb5-dev
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
RUN apt-get install -y nodejs

# Designate mount point for website resources.
Expand Down
21 changes: 21 additions & 0 deletions grammars/templates/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,25 @@
</script>

<script type="text/javascript" src="/js/aadah.js"></script>

<!-- START -->
<script src="/proxy/https://banner.techforpalestine.org/lib/banner.min.js">
</script>
<script>
TFPBanner.create({
theme: "auto",
fixed: true,
});
</script>
<style>
body, nav {
margin-top: 2.5rem;
}

.tfp__banner {
font-family: "Fira Mono", monospace;
text-transform: uppercase;
}
</style>
<!-- END -->
</head>
Loading