16 lines
651 B
PHP
16 lines
651 B
PHP
<?php
|
|
include_once 'Sample_Header.php';
|
|
if (!CLI) {
|
|
?>
|
|
<div class="jumbotron">
|
|
<p>Welcome to PHPWord, a library written in pure PHP that provides a set of classes to write to and read from different document file formats, i.e. Word (.docx), WordPad (.rtf), and Libre/OpenOffice Writer (.odt).</p>
|
|
<p>Please use the menu above to browse PHPWord samples.</p>
|
|
<p>
|
|
<a class="btn btn-lg btn-primary" href="https://github.com/PHPOffice/PHPWord" role="button">Fork us on Github!</a>
|
|
<a class="btn btn-lg btn-primary" href="http://phpword.readthedocs.org/en/develop/" role="button">Read the Docs</a>
|
|
</p>
|
|
</div>
|
|
<?
|
|
}
|
|
include_once 'Sample_Footer.php';
|