Skip to content

Commit

Permalink
Fix inline images
Browse files Browse the repository at this point in the history
  • Loading branch information
davetcc committed Sep 21, 2024
1 parent 126ce28 commit fde06b5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion content/arduino-libraries/tc-menu.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ We have tested the designer application and embedCONTROL on a Raspberry PI, so n

## Remotely controlling your menu / IoT

<img class="pull-left" src="/products/arduino-libraries/images/apps/embed-control/mainicon.png" width="120" alt="IoT control with embedCONTROL"/>Our menu designer can build in IoT capabilities near automatically (on Ethernet2, UipEthernet (ENC28J60), ESP8266-WiFi, ESP32-WiFi, Bluetooth and Serial). Allowing you to [remotely monitor and control your device using Embed Control](https://www.thecoderscorner.com/products/apps/embed-control/) with minimal effort.
{{< img class="pull-left" src="/products/arduino-libraries/images/apps/embed-control/mainicon.png" width="120" alt="IoT control with embedCONTROL" >}} Our menu designer can build in IoT capabilities near automatically (on Ethernet2, UipEthernet (ENC28J60), ESP8266-WiFi, ESP32-WiFi, Bluetooth and Serial). Allowing you to [remotely monitor and control your device using Embed Control](https://www.thecoderscorner.com/products/apps/embed-control/) with minimal effort.

However, to write your own remote monitoring, use our [Java Remote API]({{< relref "tcmenu-java-api-to-arduino-remote-control.md" >}}), [TypeScript/JavaScript API](https://github.com/TcMenu/embedcontrolJS), [C#/DotNet API](https://github.com/TcMenu/tcmenu-dotnet-sdk), or the [Python API](https://github.com/TcMenu/tcmenu-python-api). Coming soon is a Dart API.

Expand Down
8 changes: 8 additions & 0 deletions layouts/shortcodes/img.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<img src="{{ .Site.BaseURL }}{{ .Get "src" }}" alt="{{ .Get "alt" }}"
{{ if (.Get "class") }}
class="{{ .Get "class"}}"
{{ end }}
{{ if (.Get "width") }}
width="{{ .Get "width"}}"
{{ end }}
/>

0 comments on commit fde06b5

Please sign in to comment.