您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

231 行
5.9KB

  1. <!DOCTYPE html>
  2. <html>
  3. <meta charset="utf-8">
  4. <head>
  5. <style>
  6. #header
  7. {
  8. background: #856d51;
  9. padding: 0.7em;
  10. text-align: left;
  11. }
  12. #header a
  13. {
  14. color: white;
  15. text-decoration: none;
  16. padding: 0.5em 1em 0.5em 1em;
  17. }
  18. #title
  19. {
  20. color: #433729;
  21. }
  22. html
  23. {
  24. font-family: sans-serif;
  25. }
  26. body
  27. {
  28. line-height: 1.5em;
  29. }
  30. body
  31. {
  32. background: #FAFAFA;
  33. }
  34. table
  35. {
  36. border-collapse: collapse;
  37. width: 100%;
  38. }
  39. table, th, td
  40. {
  41. border: 1px solid #aaa;
  42. padding: 0.5em;
  43. margin-top: 0.5em;
  44. margin-bottom: 0.5em;
  45. }
  46. code, pre
  47. {
  48. font-family: monospace, serif;
  49. font-size: 1em;
  50. color: #7f0a0c;
  51. background: #f5f5f5;
  52. white-space: pre-wrap;
  53. }
  54. .contents
  55. {
  56. background: #FFFFFF;
  57. width: 720px;
  58. padding: 1em;
  59. margin-top: 2em;
  60. margin-bottom: 2em;
  61. border: 1px solid #E0E0E0;
  62. text-align: left;
  63. color: #444;
  64. }
  65. #footer
  66. {
  67. text-align: center;
  68. }
  69. #lang
  70. {
  71. float: right;
  72. }
  73. </style>
  74. <title>
  75. PSKOV
  76. </title>
  77. </head>
  78. <body>
  79. <div id="header">
  80. <strong id="title">PSKOV</strong>
  81. <a href="pskov_1.0.0.html">Tool</a>
  82. <a href="education.html">Education</a>
  83. <div id="lang">
  84. <a href="../en/education.01.why.html">EN</a>
  85. <a href="../ru/education.01.why.html">RU</a>
  86. </div>
  87. </div>
  88. <center><h1>
  89. Education: 01. Why
  90. </h1></center>
  91. <center><div class="contents">
  92. <table>
  93. <thead>
  94. <tr>
  95. <th>&lt; Back</th>
  96. <th>Index</th>
  97. <th>Next &gt;</th>
  98. </tr>
  99. </thead>
  100. <tbody>
  101. <tr>
  102. <td>Not available</td>
  103. <td><a href="education.html">Education</a></td>
  104. <td><a href="education.02.deps.html">02. Dependencies</a></td>
  105. </tr>
  106. </tbody>
  107. </table>
  108. <p></div><div class="contents"></p>
  109. <p>In this document we briefly explain why <strong>PSKOV</strong> was created.</p>
  110. <p>Estimated completion time: 5 minutes.</p>
  111. <p><strong>Table of contents</strong></p>
  112. <ul>
  113. <li><a href="#why">01. Why</a></li>
  114. <li><a href="#features">02. Features</a></li>
  115. </ul>
  116. <p><a name="why"/></p>
  117. <h2 id="01why">01. Why</h2>
  118. <p>You might know there already exist quite a lot of <a href="https://medium.com/codingthesmartway-com-blog/top-static-site-generators-for-2019-26a4c8afcc05">static site generators</a>, why create another one? Because <strong>they were not good enough</strong> for <a href="http://opengamestudio.org">Open Game Studio</a> needs.</p>
  119. <p>Here's a list of <strong>features we don't need</strong>:</p>
  120. <table>
  121. <thead>
  122. <tr>
  123. <th>№</th>
  124. <th>Unwelcome feature</th>
  125. <th>Note</th>
  126. </tr>
  127. </thead>
  128. <tbody>
  129. <tr>
  130. <td>1</td>
  131. <td>Learning anything beyond HTML, CSS, JavaScript, and Markdown</td>
  132. <td>These technologies are enough to have a clean web site</td>
  133. </tr>
  134. <tr>
  135. <td>2</td>
  136. <td>Server side</td>
  137. <td>Nobody should be able to pull the plug on you except yourself</td>
  138. </tr>
  139. <tr>
  140. <td>3</td>
  141. <td>Installation</td>
  142. <td>No more forced updates that were never requested</td>
  143. </tr>
  144. <tr>
  145. <td>4</td>
  146. <td>Comprehensible source code</td>
  147. <td>No more millions of source code files</td>
  148. </tr>
  149. </tbody>
  150. </table>
  151. <p><a name="features"/></p>
  152. <h2 id="02features">02. Features</h2>
  153. <p>Consequently, here is a list of <strong>PSKOV features</strong>:</p>
  154. <table>
  155. <thead>
  156. <tr>
  157. <th>№</th>
  158. <th>PSKOV feature</th>
  159. <th>Note</th>
  160. </tr>
  161. </thead>
  162. <tbody>
  163. <tr>
  164. <td>1</td>
  165. <td>HTML, CSS, JavaScript, and Markdown</td>
  166. <td>Just what you already know</td>
  167. </tr>
  168. <tr>
  169. <td>2</td>
  170. <td>Client side</td>
  171. <td><strong>PSKOV</strong> is a client side JavaScript application, it runs solely on your device</td>
  172. </tr>
  173. <tr>
  174. <td>3</td>
  175. <td>Available on-line</td>
  176. <td><a href="http://opengamestudio.org/pskov">http://opengamestudio.org/pskov</a></td>
  177. </tr>
  178. <tr>
  179. <td>4</td>
  180. <td>Available off-line</td>
  181. <td>Just save the <a href="http://opengamestudio.org/pskov">Tool</a> page and then open it locally</td>
  182. </tr>
  183. <tr>
  184. <td>5</td>
  185. <td>Comprehensible source code</td>
  186. <td><strong>PSKOV</strong> is a single HTML file</td>
  187. </tr>
  188. <tr>
  189. <td>6</td>
  190. <td>Belongs to everyone</td>
  191. <td><strong>PSKOV</strong> is released under <a href="https://creativecommons.org/share-your-work/public-domain/cc0/">CC0</a> license (public domain)</td>
  192. </tr>
  193. <tr>
  194. <td>7</td>
  195. <td>Runs for decades</td>
  196. <td>You can use <strong>PSKOV</strong> on both Windows 2000 and Windows 2030*</td>
  197. </tr>
  198. </tbody>
  199. </table>
  200. <p>* Windows 2030 does not (yet) exist, we simply refer to the fact that <strong>PSKOV</strong> is designed to work for operating systems released in the range of years 2000-2030</p>
  201. <p></div><div class="contents"></p>
  202. <table>
  203. <thead>
  204. <tr>
  205. <th>&lt; Back</th>
  206. <th>Index</th>
  207. <th>Next &gt;</th>
  208. </tr>
  209. </thead>
  210. <tbody>
  211. <tr>
  212. <td>Not available</td>
  213. <td><a href="education.html">Education</a></td>
  214. <td><a href="education.02.deps.html">02. Dependencies</a></td>
  215. </tr>
  216. </tbody>
  217. </table>
  218. </div></center>
  219. <div id="footer">
  220. The site has been generated by <a href="http://opengamestudio.org/pskov">PSKOV</a>
  221. from <a href="http://github.com/ogstudio/site-pskov">this source code</a>.
  222. The site is hosted by <a href="https://pages.github.com">GitHub Pages</a>.
  223. </div>
  224. <script type="text/javascript">
  225. </script>
  226. </body>
  227. </html>