https://github.com/bennetgallein/angleframework
Template & Routing Engine in PHP
https://github.com/bennetgallein/angleframework
Last synced: about 1 month ago
JSON representation
Template & Routing Engine in PHP
- Host: GitHub
- URL: https://github.com/bennetgallein/angleframework
- Owner: bennetgallein
- Created: 2018-04-18T19:32:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-14T17:35:03.000Z (about 2 years ago)
- Last Synced: 2025-08-25T00:23:51.696Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 94.7 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Template Engine
Basic Documentation: The first line is the template language and the second is the PHP equivalent
#### Installation
Please use this Engine only with composer:
```json
"repositories": [{
"type": "composer",
"url": "https://packages.streamtitties.fun"
}],
```
And
```
"require": {
"bennetgallein/angle-framework": "dev-master"
},
```
### TODO:
- implement native Logging to a file with different important steps.
###### echo Variable
```
{ :varname }
= $varname; ?>
```
###### set Variable
```
{ :varname = 1 }
```
###### foreach Loops
```
{ foreach :entry in :list}
{ foreach :entry in :list with :key }
$entry): ?>
{ endforeach }
```