Template
Everything on SkillVeris tagged Template — collected across the glossary, study notes, blog, and cheat sheets.
13 resources across 2 libraries
Study Notes(12)
Mixins and Metaprogramming
See how D's string mixins and template mixins let you generate and reuse code at compile time, powered by CTFE and compile-time reflection via __traits.
Templates in D
Learn D's compile-time generic programming system: function and struct/class templates, constraints, and variadic templates.
Template Method Pattern
The Template Method pattern fixes the skeleton of an algorithm in a base class while letting subclasses override specific steps, using inheritance and the Holl…
Context and Template Tags
Understand how Django builds the template context (including automatic context processors) and how to write custom template tags and filters for reusable prese…
Django Templates
Learn Django's built-in template language — variables, tags, filters, template inheritance, and how the template engine renders context into HTML safely.
Template Literals in JavaScript
Learn how backtick-delimited template literals enable string interpolation, multi-line strings, and tagged templates.
Template Literal Types in TypeScript
Build new string literal types by interpolating other types into a template, similar to JS template literals but evaluated at the type level.
Template Syntax
A tour of Vue's HTML-based template syntax, including text interpolation, directive bindings, and the shorthand notations for v-bind and v-on.
Angular Quick Reference
A condensed cheat sheet of core Angular syntax—control flow, signals, decorators, CLI commands, and DI patterns—for fast lookup while coding.
Introduction to Signals
Understand Angular Signals — the reactive primitive that wraps a value and notifies dependents on change, forming the foundation of Angular's modern change-det…
Template-Driven Forms
Explore Angular's template-driven forms approach, where form structure and validation rules live mostly in the HTML template using directives like ngModel and…
Template Syntax and Interpolation
How Angular templates blend HTML with expressions, and how interpolation renders component state directly into the DOM as text.