diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-20 11:15:05 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-05-20 11:15:05 -0400 |
commit | d1e3fc2f99dcb66d3fb0f89cce3fe65876f8831b (patch) | |
tree | ea006de1ce274d61a9f704f39638f578463d7ec2 /captain/templates/about.html | |
parent | a13d6f007be2b43704b6237cacf668452172e591 (diff) | |
download | levitating-d1e3fc2f99dcb66d3fb0f89cce3fe65876f8831b.tar.gz levitating-d1e3fc2f99dcb66d3fb0f89cce3fe65876f8831b.zip |
Added templates for about and home pages.
Diffstat (limited to 'captain/templates/about.html')
-rw-r--r-- | captain/templates/about.html | 38 |
1 files changed, 38 insertions, 0 deletions
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 © 2021 Approximatrix, LLC <support@approximatrix.com></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> |