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

Landing page (second review cycle) #425

Merged
merged 22 commits into from
Jun 3, 2020
Merged
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: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

/blogs.json
/blogs.xml
/demo.cast
/favicon.png
/favicon.ico
/news-rss.xml
Expand Down
6 changes: 5 additions & 1 deletion 404.tt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[% WRAPPER layout.tt title="Not found" menu='nixos' %]
[% WRAPPER layout.tt title="Not found" %]

<div class="page-header">
<h1>Not found</h1>
</div>

<p>
The requested content <span class="at_url"></span> could not be found.
Expand Down
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,12 @@ default: all


HTML = index.html download.html news.html learn.html community.html \
governance.html donate.html commercial-support.html \
governance.html donate.html commercial-support.html features.html \
teams/rfc-steering-committee.html teams/security.html teams/marketing.html \
teams/nixos_release.html teams/infrastructure.html teams/nixcon.html \
teams/discourse.html \
guides/contributing.html \
nix/index.html nix/about.html \
nixpkgs/index.html \
nixos/index.html nixos/about.html \
nixos/packages.html nixos/options.html \
nixos/wiki.html \
404.html


Expand Down Expand Up @@ -147,3 +143,8 @@ nixpkgs/packages-channels.json: Makefile

nixos/packages-explorer.js:
@ln -sfn $(PACKAGES_EXPLORER) $@

all: demo.cast

demo.cast: demo.py demo.scenario
python demo.py demo.scenario > demo.cast
2 changes: 1 addition & 1 deletion commercial-support.tt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[% WRAPPER layout.tt hideTitle=1 title="Commercial support" menu='nixos' %]
[% WRAPPER layout.tt title="Commercial support" %]

<h1>Commercial support</h1>

Expand Down
2 changes: 1 addition & 1 deletion community.tt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[% WRAPPER layout.tt hideTitle=1 title="NixOS Community" menu='nixos' %]
[% WRAPPER layout.tt title="NixOS Community" %]

<h1>NixOS Community</h1>

Expand Down
Loading