mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 23:30:35 -04:00
26 lines
887 B
PHP
26 lines
887 B
PHP
<?
|
|
require_once('Core.php');
|
|
?><?= Template::Header(['title' => 'Our goals', 'highlight' => 'about', 'description' => 'The goals of the Standard Ebooks project.']) ?>
|
|
<main>
|
|
<article>
|
|
<h1>Our Goals</h1>
|
|
<ol>
|
|
<li>
|
|
<p>Produce ebooks that embrace the latest ebook technology standards.</p>
|
|
</li>
|
|
<li>
|
|
<p>Produce ebooks aimed at the sensibilities of modern readers that rival commercially-available ebooks in typography and formatting.</p>
|
|
</li>
|
|
<li>
|
|
<p>Produce ebooks with strict code formatting standards and patterns, so that they can be used as a base for other ebook projects.</p>
|
|
</li>
|
|
<li>
|
|
<p>Produce ebooks with rich semantic data and predictable structure that can be easily machine-processed.</p>
|
|
</li>
|
|
<li>
|
|
<p>Enrich and evangelize the worldwide public domain.</p>
|
|
</li>
|
|
</ol>
|
|
</article>
|
|
</main>
|
|
<?= Template::Footer() ?>
|