1
0
mirror of https://github.com/restoreddev/phpapprentice.git synced 2025-08-14 02:34:19 +02:00

Wrote two chapters for web section

Also, tweaked build to allow for nested folders
This commit is contained in:
Andrew Davis
2019-02-17 21:29:29 -06:00
parent 9fbb1ab290
commit e17a687d99
9 changed files with 143 additions and 3 deletions

View File

@@ -260,6 +260,9 @@ button:hover .icon svg {
.modal-content .table-of-contents {
padding: 2em;
}
.section-title {
margin-bottom: 0;
}
.closed {
display: none;
}

View File

@@ -4,6 +4,8 @@
<li><a href="/">Preface</a></li>
<li><a href="<?= page_path('installing-php') ?>">Installing PHP</a></li>
</ul>
<h5 class="section-title">Basics</h5>
<ol>
<li><a href="<?= page_path('basics') ?>">Basics</a></li>
<li><a href="<?= page_path('variables') ?>">Variables</a></li>
@@ -24,5 +26,12 @@
<li><a href="<?= page_path('abstract') ?>">Abstract Classes</a></li>
<li><a href="<?= page_path('exceptions') ?>">Exceptions</a></li>
</ol>
<h5 class="section-title">Web</h5>
<ol>
<li><a href="<?= page_path('web/http') ?>">HTTP</a></li>
<li><a href="<?= page_path('web/http-post') ?>">HTTP POST</a></li>
</ol>
<a href="<?= page_path('credits') ?>">Credits</a>
</div>