aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2021-05-20 11:15:05 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2021-05-20 11:15:05 -0400
commitd1e3fc2f99dcb66d3fb0f89cce3fe65876f8831b (patch)
treeea006de1ce274d61a9f704f39638f578463d7ec2
parenta13d6f007be2b43704b6237cacf668452172e591 (diff)
downloadlevitating-d1e3fc2f99dcb66d3fb0f89cce3fe65876f8831b.tar.gz
levitating-d1e3fc2f99dcb66d3fb0f89cce3fe65876f8831b.zip
Added templates for about and home pages.
-rw-r--r--captain/templates/about.gmi21
-rw-r--r--captain/templates/about.html38
-rw-r--r--captain/templates/home.gmi5
-rw-r--r--captain/templates/home.html13
4 files changed, 77 insertions, 0 deletions
diff --git a/captain/templates/about.gmi b/captain/templates/about.gmi
new file mode 100644
index 0000000..da39ab1
--- /dev/null
+++ b/captain/templates/about.gmi
@@ -0,0 +1,21 @@
+{% extends index.gmi as contents %}
+
+## About Levitating
+
+Levitating is a pure-Fortran distributed build service that is extraordinarily simple and lean on system resources. It relies on the Gemini and Titan protocols for information transfer between the players, or systems doing the actual work, and the captain, or this server that coordinates builds and reports results.
+
+This version of the Levitating captain was compiled on {{ build_date }}.
+
+=> https://git.approximatrix.com/cgit.cgi/levitating/about/ Levitating Home Page
+
+### License
+
+Copyright(c) 2021 Approximatrix, LLC <support@approximatrix.com>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+The Software shall be used for Good, not Evil.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/captain/templates/about.html b/captain/templates/about.html
new file mode 100644
index 0000000..cdee89d
--- /dev/null
+++ b/captain/templates/about.html
@@ -0,0 +1,38 @@
+{% extends index.html as contents %}
+
+<h2>About Levitating</h2>
+
+<p>Levitating is a pure-Fortran distributed build service that is extraordinarily simple
+ and lean on system resources. It relies on the Gemini and Titan protocols for information
+ transfer between the players, or systems doing the actual work, and the captain, or this
+ server that coordinates builds and reports results.
+</p>
+
+<p>This version of the Levitating captain was compiled on {{ build_date }}.</p>
+
+<p><a href="https://git.approximatrix.com/cgit.cgi/levitating/about/">Levitating Home Page</a></p>
+
+<h3>License</h3>
+
+<p>Copyright &copy; 2021 Approximatrix, LLC &lt;support@approximatrix.com&gt;</p>
+
+<p>Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+</p><p>
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+</p><p>
+The Software shall be used for Good, not Evil.
+</p><p>
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+</p>
diff --git a/captain/templates/home.gmi b/captain/templates/home.gmi
new file mode 100644
index 0000000..095b613
--- /dev/null
+++ b/captain/templates/home.gmi
@@ -0,0 +1,5 @@
+{% extends index.gmi as contents %}
+
+## Welcome to the Levitating Build Service for the {{ project }} Project
+
+This server will automate job launching across multiple machines, platforms, and tasks. Feel free to explore using the links above.
diff --git a/captain/templates/home.html b/captain/templates/home.html
new file mode 100644
index 0000000..a804d62
--- /dev/null
+++ b/captain/templates/home.html
@@ -0,0 +1,13 @@
+{% extends index.html as contents %}
+
+<h2>Welcome to the Levitating Build Service for the {{ project }} Project</h2>
+
+<p>This server will automate job launching across multiple machines, platforms, and tasks. Feel free to explore:</p>
+
+<ul>
+ <li><a href="releases.html">Releases</a> - Browse files uploaded by players as jobs and their tasks are performed</li>
+ <li><a href="jobs.html">Jobs</a> - View pending and completed jobs along with results</li>
+ <li><a href="players.html">Players</a> - Manage players, including adding new players to the team</li>
+ <li><a href="instructions.html">Instructions</a> - Launch certain instruction sets or assign instructions to players</li>
+ <li><a href="about.html">About</a> - Learn more about this service</li>
+</ul>