Adds Bootstrap
parent
2eb18f0e84
commit
fa61eecb15
|
@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
|
||||||
### Added
|
### Added
|
||||||
- Added duration calculation in conferences listing
|
- Added duration calculation in conferences listing
|
||||||
- Added manual install script
|
- Added manual install script
|
||||||
|
- Added Bootstrap (licensed under MIT)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,12 @@ To see a demo install, go to https://work.lindeas.com/jilo-web-demo/
|
||||||
|
|
||||||
Current version: **0.1** released on **2024-07-08**
|
Current version: **0.1** released on **2024-07-08**
|
||||||
|
|
||||||
|
## license
|
||||||
|
|
||||||
|
This project is licensed under the GNU General Public License version 2 (GPL-2.0). See LICENSE file.
|
||||||
|
|
||||||
|
Bootstrap is used in this project and is licensed under the MIT License. See bootstrap-license file
|
||||||
|
|
||||||
## requirements
|
## requirements
|
||||||
|
|
||||||
- web server (deb: apache | nginx)
|
- web server (deb: apache | nginx)
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2011-2024 The Bootstrap Authors
|
||||||
|
|
||||||
|
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 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.
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,11 +1,14 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
<link rel="stylesheet" type="text/css" href="static/bootstrap.min.css">
|
||||||
<link rel="stylesheet" type="text/css" href="static/all.css">
|
<link rel="stylesheet" type="text/css" href="static/all.css">
|
||||||
<title>Jilo Web</title>
|
<title>Jilo Web</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="main">
|
<script src="static/bootstrap.min.js"></script>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
|
Loading…
Reference in New Issue