diff options
Diffstat (limited to 'vendor/smarty/smarty/docs/philosophy.md')
-rw-r--r-- | vendor/smarty/smarty/docs/philosophy.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/smarty/smarty/docs/philosophy.md b/vendor/smarty/smarty/docs/philosophy.md index 34555c288..c5edd3980 100644 --- a/vendor/smarty/smarty/docs/philosophy.md +++ b/vendor/smarty/smarty/docs/philosophy.md @@ -8,18 +8,18 @@ presentation. This is best described in a situation where the application programmer and the template designer play different roles, or in most cases are not the same person. -For example, let\'s say you are creating a web page that is displaying a +For example, let's say you are creating a web page that is displaying a newspaper article. - The article `$headline`, `$tagline`, `$author` and `$body` are content elements, they contain no information about how they will be - presented. They are [passed](#api.assign) into Smarty by the + presented. They are [passed](getting-started.md#basic-usage) into Smarty by the application. - Then the template designer edits the templates and uses a - combination of HTML tags and [template tags](#language.basic.syntax) + combination of HTML tags and [template tags](designers/language-basic-syntax/language-syntax-tags.md) to format the presentation of these - [variables](#language.syntax.variables) with elements such as + [variables](designers/language-basic-syntax/language-syntax-variables.md) with elements such as tables, div\'s, background colors, font sizes, style sheets, svg etc. |