Skip to content
This repository has been archived by the owner on Mar 29, 2021. It is now read-only.

Commit

Permalink
Add Autoloader to instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
hxtree committed Feb 3, 2020
1 parent c109bf6 commit f46af97
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ It instantiates DomElements as customizable backend components and orchestrates

LHTML5
```
<?php require $_SERVER['DOCUMENT_ROOT'] . '/src/Autoloader.php'; ?>
<body>
<partial name="userprofile">
<p><var name="username"/></p>
Expand All @@ -24,11 +25,14 @@ LHTML5
```
HTML5
```
<body>
<div class="user-profile">
<p>Jane Doe</p>
</div>
</body>
<!DOCTYPE html>
<html>
<body>
<div class="user-profile">
<p>Jane Doe</p>
</div>
</body>
</html>
```

# Installation
Expand Down

0 comments on commit f46af97

Please sign in to comment.