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