-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
24 lines (17 loc) · 913 Bytes
/
index.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: layouts/home.njk
eleventyNavigation:
key: Home
order: 1
---
<p>Hi there. I work at Zenika as a Product Manager.</p>
<p><strong>What do Product Managers do?</strong> They drive the vision, strategy, design, and execution of a product.</p>
<p>This discipline is at the crossroad of Tech (and agile delivery), UX (and user research) and Business (and market strategy).</p>
<p>While one can often quickly comprehend the basic responsibilities of the role, mastering each of these dimensions is truly one's life labor or love.</p>
<hr>
{% set maxPosts = collections.posts.length | min(3) %}
<h1>Latest {% if maxPosts == 1 %}Post{% else %}{{ maxPosts }} Posts{% endif %}</h1>
{% set postslist = collections.posts | head(-3) %}
{% set postslistCounter = collections.posts | length %}
{% include "postslist.njk" %}
<p>More posts can be found in <a href="{{ '/posts/' | url }}">the archive</a>.</p>