GITBOOK-158: No subject

This commit is contained in:
Ryan Kulp
2025-07-27 21:43:42 +00:00
committed by gitbook-bot
parent 122d516842
commit 05027c965a
4 changed files with 1 additions and 14 deletions
-11
View File
@@ -2,17 +2,6 @@
description: >-
Welcome to TRMNL. Here you can learn how to build plugins, connect your own
hardware, and more.
layout:
title:
visible: true
description:
visible: true
tableOfContents:
visible: true
outline:
visible: true
pagination:
visible: false
---
# 👋 Overview
+1 -1
View File
@@ -8,7 +8,7 @@
* [Screen Templating](private-plugins/templates.md)
* [🖼️ Plugin Templating (DEPRECATED, hidden)](private-plugins/templates-1.md)
* [Screen Templating (Graphics)](private-plugins/templates-advanced.md)
* [Webhooks](private-plugins/create-a-screen.md)
* [Webhooks](private-plugins/webhooks.md)
***
-2
View File
@@ -28,12 +28,10 @@ Our Liquid implementation provides a new tag, `{% template [name] %}` , which wo
```liquid
<!-- shared markup -->
{% raw %}
{% template say_hello %}
Hello there, {{ name }}.
{% endtemplate %}
<!-- view markup -->
{% render "say_hello", name: "General Kenobi" %}
{% endraw %}
```