mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-03 05:13:56 -05:00
16 lines
263 B
Markdown
16 lines
263 B
Markdown
---
|
|
title: le
|
|
description: Returns the boolean truth of arg1 <= arg2.
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
keywords: [operators,logic]
|
|
signature: ["le ARG1 ARG2"]
|
|
relatedfuncs: []
|
|
---
|
|
|
|
|
|
```go-html-template
|
|
{{ if le 5 10 }}true{{ end }}
|
|
```
|