-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from hannobraun/website
Add community page to website
- Loading branch information
Showing
6 changed files
with
146 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
+++ | ||
title = "Community" | ||
+++ | ||
|
||
If you are interested in Fornjot, please consider joining the community! We'd love to have you! | ||
|
||
If possible, please use the [Matrix channel](https://matrix.to/#/#fornjot:braun-odw.eu) or [GitHub Discussions](https://github.com/hannobraun/Fornjot/discussions) for questions and general feedback. | ||
|
||
If you found a bug or have a feature request please [open an issue on GitHub](https://github.com/hannobraun/Fornjot/issues/new). Feel free to check the [list of open issues](https://github.com/hannobraun/Fornjot/issues), but if you don't have time, don't let that stop you. We'd rather close duplicate issues than not hear about a bug. | ||
|
||
To join the Fornjot project as a developer, please clone the [GitHub repository](https://github.com/hannobraun/Fornjot) and submit a pull request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title>Fornjot</title> | ||
|
||
<link href="style.css" rel="stylesheet" type="text/css" media="all" /> | ||
</head> | ||
<body> | ||
<header> | ||
<a class="title" href="/"> | ||
<h1>Fornjot</h1> | ||
<h2>The world needs another CAD program.</h2> | ||
</a> | ||
<nav> | ||
<ul> | ||
<li><a href="/">About</a></li> | ||
<li><a href="/community">Community</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
{% block main %}{% endblock %} | ||
</main> | ||
<footer> | ||
<p> | ||
This website is maintained by <a href="https://hanno.braun-odw.eu/">Hanno Braun</a>, creator of Fornjot. | ||
</p> | ||
|
||
<address> | ||
Hanno Braun<br /> | ||
Untere Pfarrgasse 19<br /> | ||
64720 Michelstadt<br /> | ||
<br /> | ||
<a href="mailto:[email protected]">[email protected]</a><br /> | ||
<a href="https://matrix.to/#/@hanno:braun-odw.eu">@hanno:braun-odw.eu</a> | ||
</address> | ||
|
||
<p> | ||
<strong>Please consider supporting Fornjot by <a href="https://github.com/sponsors/hannobraun">sponsoring me</a>.</strong> | ||
</p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title>Fornjot</title> | ||
|
||
<link href="style.css" rel="stylesheet" type="text/css" media="all" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Fornjot</h1> | ||
<h2>The world needs another CAD program.</h2> | ||
</header> | ||
<main> | ||
{{ section.content | safe }} | ||
|
||
<form | ||
class="newsletter" | ||
method="POST" | ||
action="https://static.mailerlite.com/webforms/submit/b3p2x0" | ||
data-code="b3p2x0" | ||
target="_blank"> | ||
|
||
|
||
<h2>Newsletter</h2> | ||
<p> | ||
Interested in Fornjot? Want to follow along? Sign up to receive regular updates. | ||
</p> | ||
|
||
<input type="hidden" name="ml-submit" value="1" /> | ||
<input type="hidden" name="anticsrf" value="true" /> | ||
|
||
<input | ||
type="email" | ||
name="fields[email]" | ||
required | ||
placeholder="[email protected]" /> | ||
<div class="submit"> | ||
<input | ||
type="submit" | ||
value="Sign up" /> | ||
</div> | ||
</form> | ||
</main> | ||
<footer> | ||
<p> | ||
This website is maintained by <a href="https://hanno.braun-odw.eu/">Hanno Braun</a>, creator of Fornjot. | ||
</p> | ||
|
||
<address> | ||
Hanno Braun<br /> | ||
Untere Pfarrgasse 19<br /> | ||
64720 Michelstadt<br /> | ||
<br /> | ||
<a href="mailto:[email protected]">[email protected]</a><br /> | ||
<a href="https://matrix.to/#/@hanno:braun-odw.eu">@hanno:braun-odw.eu</a> | ||
</address> | ||
|
||
<p> | ||
<strong>Please consider supporting Fornjot by <a href="https://github.com/sponsors/hannobraun">sponsoring me</a>.</strong> | ||
</p> | ||
</footer> | ||
</body> | ||
</html> | ||
{% extends "base.html" %} | ||
|
||
{% block main %} | ||
{{ section.content | safe }} | ||
|
||
<form | ||
class="newsletter" | ||
method="POST" | ||
action="https://static.mailerlite.com/webforms/submit/b3p2x0" | ||
data-code="b3p2x0" | ||
target="_blank"> | ||
|
||
|
||
<h2>Newsletter</h2> | ||
<p> | ||
Interested in Fornjot? Want to follow along? Sign up to receive regular updates. | ||
</p> | ||
|
||
<input type="hidden" name="ml-submit" value="1" /> | ||
<input type="hidden" name="anticsrf" value="true" /> | ||
|
||
<input | ||
type="email" | ||
name="fields[email]" | ||
required | ||
placeholder="[email protected]" /> | ||
<div class="submit"> | ||
<input | ||
type="submit" | ||
value="Sign up" /> | ||
</div> | ||
</form> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block main %} | ||
<h2>{{ page.title }}</h2> | ||
|
||
{{ page.content | safe }} | ||
{% endblock %} |