1
0
mirror of https://github.com/lektor/lektor-website.git synced 2025-03-07 14:07:25 +01:00

23 lines
500 B
Plaintext
Raw Normal View History

2015-12-19 14:52:17 +01:00
title: get
---
summary: Looks up an item by ID.
---
type: method
---
signature: id, page_num=...
---
body:
This method mostly exists for consistency. It's an alternative to using
the [get :ref](../../pad/get/) method of the pad but respects the currently
applied filtering. If `page_num` is provided it overrides the currently
requested page number from the query for pagination.
## Example
```html+jinja
{% set p1 = this.children.get('project-1') %}
<h2>{{ p1.name }}</h2>
<p>Our favorite!
```