/template/twigstarter/vendor/twig/twig/src/TokenParser/ |
H A D | IncludeTokenParser.php | 31 list($variables, $only, $ignoreMissing) = $this->parseArguments(); 33 …return new IncludeNode($expr, $variables, $only, $ignoreMissing, $token->getLine(), $this->getTag(… 47 $variables = null; 49 $variables = $this->parser->getExpressionParser()->parseExpression(); 59 return [$variables, $only, $ignoreMissing];
|
H A D | WithTokenParser.php | 28 $variables = null; 31 $variables = $this->parser->getExpressionParser()->parseExpression(); 41 return new WithNode($body, $variables, $only, $token->getLine(), $this->getTag());
|
H A D | EmbedTokenParser.php | 30 list($variables, $only, $ignoreMissing) = $this->parseArguments(); 58 …return new EmbedNode($module->getTemplateName(), $module->getAttribute('index'), $variables, $only…
|
/template/twigstarter/vendor/twig/twig/doc/functions/ |
H A D | include.rst | 11 Included templates have access to the variables of the active context. 17 additional variables: 21 …{# template.html will have access to the variables from the current context and the additional one… 34 {# no variables will be accessible #} 74 * ``variables``: The variables to pass to the template 75 * ``with_context``: Whether to pass the current context variables or not
|
H A D | dump.rst | 6 introspecting its variables: 43 You can debug several variables by passing them as additional arguments: 49 If you don't pass any value, all variables from the current context are
|
/template/twigstarter/vendor/twig/twig/src/Node/ |
H A D | WithNode.php | 23 …public function __construct(Node $body, ?Node $variables, bool $only, int $lineno, string $tag = n… argument 26 if (null !== $variables) { 27 $nodes['variables'] = $variables;
|
H A D | IncludeNode.php | 25 …public function __construct(AbstractExpression $expr, ?AbstractExpression $variables, bool $only, … argument 28 if (null !== $variables) { 29 $nodes['variables'] = $variables;
|
H A D | EmbedNode.php | 26 …public function __construct(string $name, int $index, ?AbstractExpression $variables, bool $only, … argument 28 …parent::__construct(new ConstantExpression('not_used', $lineno), $variables, $only, $ignoreMissing…
|
/template/notos/lang/en/ |
H A D | style.txt | 1 The Notos template uses less color variables than the default template. Those variables are shown i… 2 The non-bold variables are not used by Notos but plugins may rely on their settings, so they should…
|
/template/mindthedark/css/ |
H A D | _geshi_dark.less | 18 @variables: #88c0ff; 88 /* variables */ 90 color: @variables;
|
/template/breeze/bower_components/modular-scale/ |
H A D | changelog.md | 10 * ratios are variables, not functions 11 * Common variables are scoped to "ms-"
|
/template/twigstarter/vendor/twig/twig/doc/tags/ |
H A D | include.rst | 44 Included templates have access to the variables of the active context. 49 You can add additional variables by passing them after the ``with`` keyword: 53 …{# template.html will have access to the variables from the current context and the additional one… 68 {# no variables will be accessible #}
|
H A D | with.rst | 15 Instead of defining variables at the beginning of the scope, you can pass a 16 hash of variables you want to define in the ``with`` tag; the previous example
|
H A D | set.rst | 4 Inside code blocks you can also assign values to variables. Assignments use 30 Several variables can be assigned in one block:
|
H A D | for.rst | 56 Inside of a ``for`` loop block you can access some special variables: 80 ``loop.last`` variables are only available for PHP arrays, or objects that
|
/template/twigstarter/vendor/twig/twig/doc/tests/ |
H A D | defined.rst | 14 {# and attributes on variables names #} 23 When using the ``defined`` test on an expression that uses variables in some
|
/template/templar/less/ |
H A D | bootstrap.less | 11 // Core variables and mixins 12 @import "variables.less"; // Modify this for custom colors, font-sizes, etc
|
H A D | responsive.less | 21 @import "variables.less"; // Modify this for custom colors, font-sizes, etc
|
/template/templar/css/ |
H A D | screen.less | 14 // Core variables and mixins 15 @import "../less/variables.less"; // Modify this for custom colors, font-sizes, etc
|
/template/twigstarter/vendor/twig/twig/doc/ |
H A D | api.rst | 51 To render the template with some variables, call the ``render()`` method:: 53 echo $template->render(['the' => 'variables', 'go' => 'here']); 61 echo $twig->render('index.html', ['the' => 'variables', 'go' => 'here']); 66 echo $template->renderBlock('block_name', ['the' => 'variables', 'go' => 'here']); 110 variables (variables and or attributes/methods that do not exist) and 316 template variables. 366 If set to ``html``, all variables in templates are escaped (using the ``html`` 390 variables or filter arguments are never automatically escaped: 464 individual variables (so, the ``raw`` filter won't have any effect here). 570 and access of variables in the compiled templates whenever possible.
|
/template/typowiki/scss/ |
H A D | typoUI.scss | 6 @import 'variables';
|
/template/argon-alt/ |
H A D | style.ini | 41 ; Placeholders defined here will also be made available as LESS variables 44 ; FIXME None of these replacement variables work right now.
|
/template/kajukkd/css/ |
H A D | geshidark.css | 84 /* variables */
|
/template/twigstarter/vendor/twig/twig/doc/filters/ |
H A D | default.rst | 17 When using the ``default`` filter on an expression that uses variables in some
|
/template/twigstarter/vendor/twig/twig/src/Extension/ |
H A D | CoreExtension.php | 1196 * @param array $variables The variables to pass to the template 1203 function twig_include(Environment $env, $context, $template, $variables = [], $withContext = true, … argument 1208 $variables = array_merge($context, $variables); 1235 return $loaded ? $loaded->render($variables) : '';
|