Archived
1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
blagoblag/docs/twig.txt
2019-02-11 00:14:30 -06:00

19 lines
798 B
Plaintext

===============================================================================
TWIG TEMPLATING SYSTEM
===============================================================================
Twig is a system for writing HTML "templates"-- HTML snippets that can have
variable names in it, which PHP will interpret and replace with the values.
We're gonna be using Twig, since it's really useful.
If you're front-end, writing HTML, look at `./twig_example.html` for a general
example of how you'll use Twig.
You can alo read `https://twig.symfony.com/doc/2.x/templates.html` if you want
more in-depth documentation, but you probably don't need it.
If you're back-end, writing PHP, look at
`https://twig.symfony.com/doc/2.x/api.html`.
Look at `variables.txt` for a list of the variables we'll be using.