Browse Source

updated readme and copyright

pull/40/head
Savetheinternet 13 years ago
parent
commit
92b0e83d47
  1. 32
      README.md
  2. 1
      templates/index.html
  3. 3
      templates/page.html
  4. 1
      templates/thread.html

32
README.md

@ -1,11 +1,12 @@
# Tinyboard - A lightweight PHP imageboard.
## About
Tinyboard is an imageboard software package written in PHP. It aims to maintain a stable, fast, clean and user-friendly engine for imageboards. Development for Tinyboard started in October 2010 and the project is being lead by [OmegaSDG][o] ("Omega Software Develop Group"). You can contact the development team over IRC at irc.n0v4.com #tinyboard.
Tinyboard is an imageboard software package written in PHP. It aims to maintain a stable, fast, clean and user-friendly engine for imageboards. Development for Tinyboard started in October 2010. You can contact the development team over IRC at [tinyboard.org][o] or on IRC at [irc.datnode.net #tinyboard][i].
Tinyboard is not currently at a stable state.
[o]: http://omegasdg.com/
[o]: http://tinyboard.org/
[i]: irc://irc.datnode.net/tinyboard
## Requirements
1. PHP >= 5.2.0
@ -31,25 +32,10 @@ An automated installation script will be completed soon.
[i]: http://github.com/savetheinternet/Tinyboard/blob/master/install.sql
[r]: http://github.com/savetheinternet/Tinyboard/blob/master/README.md
## License
Copyright (c) 2010-2011, Omega Software Development Group <http://omegasdg.com/>
Permission to use, copy, modify, and/or distribute this software is granted,
provided that the following terms are obeyed.
1. The above copyright notice, this permission notice, and these terms must
appear in all copies and modifications of this software.
## Documentation
Visit the development wiki at [http://tinyboard.org/wiki/][o] for help.
[o]: http://tinyboard.org/
2. This software must not be utilized in any manner that is primarily intended
for or directed toward commercial advantage or private monetary compensation.
3. Any changes to this software must be made easily publicly available in the
form of source code.
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
## License
See [LICENSE.md][l] for license.
[l]: http://github.com/savetheinternet/Tinyboard/blob/master/README.md

1
templates/index.html

@ -9,6 +9,7 @@
</head>
<body>
{boardlist[top]}
{pm?<div class="top_notice">{pm}</div><hr/>}
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>

3
templates/page.html

@ -7,10 +7,11 @@
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
</head>
<body>
{pm?<div class="top_notice">{pm}</div><hr/>}
<h1>{title}</h1>
<div class="title">{subtitle?{subtitle}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>
{body}
<hr/>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://wiki.omegasdg.com/index.php?title=Tinyboard">Tinyboard Alpha</a> | <a href="http://wiki.omegasdg.com/index.php?title=Tinyboard">Tinyboard</a> Copyright © 2010-2011 <a href="http://omegasdg.com/">OmegaSDG</a></p>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard Alpha</a> | <a href="http://tinyboard.org/">Tinyboard</a> Copyright © 2010-2011 <a href="http://tinyboard.org/">Tinyboard Development Group</a></p>
</body>
</html>

1
templates/thread.html

@ -9,6 +9,7 @@
</head>
<body>
{boardlist[top]}
{pm?<div class="top_notice">{pm}</div><hr/>}
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>

Loading…
Cancel
Save