generated from fastn-stack/fastn-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperson.ftd
382 lines (253 loc) · 7.11 KB
/
person.ftd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
-- import: fifthtry.github.io/bling/assets
-- import: fifthtry.github.io/package-doc/doc as pd
-- bling.page: `person` and it's Usage
Person component can be used as part of any component and are available in below
formats:
-- pd.package: `person`
name: fifthtry.github.io/bling
Create a single person card OR person cards list using your excel sheet data.
-- cb.code:
lang: ftd
\-- fastn.dependency: fifthtry.github.io/bling
\-- fastn.auto-import: bling/person as person
-- tf.markdown:
Below is example of `persona-list`.
Once you add above lines into your web package, add `persona-list` into your
`.ftd` files:
-- cb.code:
lang: ftd
Create a list of persons using below list format:
\-- person.person list persons-data:
\-- persons-data: Amit Upadhyay
profile: CEO, FifthTry Pvt. Ltd.
avatar: $assets.files.static.amitu.jpg
email: [email protected]
phone: +91 1234123412
address: 66737 Reinke Park, Banglore - 560068
Sunglass(1, 2, 3), Dare to be scared book 😜, codename game, Bharat game, Chai
Garam game
\-- persons-data: Ganesh Salunke
profile: Senior Frontend Manager
avatar: $assets.files.static.ganeshs.jpg
email: [email protected]
phone: +91 222123412
address: 6 Spenser Drive, Banglore - 560068
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut.
\-- person.persona-list:
persons: $persons-data
-- tf.markdown:
Output of above:
-- persona-list:
persons: $persons-data
-- tf.markdown:
Below is example of `persona-card`.
Once you add above lines into your web package, add `persona-list` into your
`.ftd` files:
-- cb.code:
lang: ftd
\-- person.persona-card: Amit Upadhyay
profile: CEO, FifthTry Pvt. Ltd.
avatar: $assets.files.static.amitu.jpg
email: [email protected]
phone: +91 1234123412
address: 66737 Reinke Park, Banglore - 560068
Sunglass(1, 2, 3), Dare to be scared book 😜, codename game, Bharat game, Chai
Garam game
-- tf.markdown:
Output of above:
-- persona-card: Amit Upadhyay
profile: CEO, FifthTry Pvt. Ltd.
avatar: $assets.files.static.amitu.jpg
email: [email protected]
phone: +91 1234123412
address: 66737 Reinke Park, Banglore - 560068
Sunglass(1, 2, 3), Dare to be scared book 😜, codename game, Bharat game, Chai
Garam game
-- end: bling.page
-- component persona-list:
person list persons:
-- ftd.column:
width: fill-container
-- person-data: $obj.title
$loop$: $persona-list.persons as $obj
avatar: $obj.avatar
profile: $obj.profile
email: $obj.email
phone: $obj.phone
address: $obj.address
body: $obj.body
-- end: ftd.column
-- end: persona-list
-- component persona-card:
caption title:
optional ftd.image-src avatar: $assets.files.static.amitu.jpg
optional string profile:
optional string email:
optional string phone:
optional string address:
optional body body:
boolean show-address: false
-- ftd.column:
width: fill-container
background.solid: $inherited.colors.background.step-1
padding-horizontal.px: 16
padding-vertical.px: 16
border-width.px: 1
border-color: $inherited.colors.border
border-radius.px: 6
margin-bottom.px: 24
-- ftd.column:
width: fill-container
spacing.fixed.px: 12
-- ftd.row:
width: fill-container
spacing.fixed.px: 24
-- ftd.column:
-- ftd.image:
if: { persona-card.avatar != NULL }
src: $persona-card.avatar
border-radius.px: 500
width.fixed.px: 64
height.fixed.px: 64
-- end: ftd.column
-- end: ftd.row
-- ftd.column:
width: fill-container
spacing.fixed.px: 12
-- ftd.text: $persona-card.title
role: $inherited.types.copy-large
color: $inherited.colors.text-strong
style: bold
-- ftd.row:
width: fill-container
spacing.fixed.px: 18
-- ftd.text: $persona-card.profile
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: $persona-card.email
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: $persona-card.phone
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: 🏠
role: $inherited.types.fine-print
color: $inherited.colors.text
-- end: ftd.row
-- end: ftd.column
-- ftd.column:
min-height.fixed.px: 18
width: fill-container
-- ftd.text: $persona-card.address
if: { persona-card.show-address }
role: $inherited.types.fine-print
color: $inherited.colors.text
-- end: ftd.column
-- end: ftd.column
-- ftd.text:
role: $inherited.types.copy-small
color: $inherited.colors.text-strong
$persona-card.body
-- end: ftd.column
-- end: persona-card
-- component person-data:
caption title:
optional ftd.image-src avatar: $assets.files.static.amitu.jpg
optional string profile:
optional string email:
optional string phone:
optional string address:
optional body body:
boolean show-address: false
-- ftd.column:
background.solid: $inherited.colors.background.step-1
padding-horizontal.px: 16
padding-vertical.px: 16
border-width.px: 1
border-color: $inherited.colors.border
border-radius.px: 6
margin-bottom.px: 24
width: fill-container
-- ftd.column:
width: fill-container
spacing.fixed.px: 12
-- ftd.row:
width: fill-container
spacing.fixed.px: 24
-- ftd.column:
-- ftd.image:
if: { person-data.avatar != NULL }
src: $person-data.avatar
border-radius.px: 500
width.fixed.px: 64
height.fixed.px: 64
-- end: ftd.column
-- end: ftd.row
-- ftd.column:
width: fill-container
spacing.fixed.px: 12
-- ftd.text: $person-data.title
role: $inherited.types.copy-large
color: $inherited.colors.text-strong
style: bold
-- ftd.row:
width: fill-container
spacing.fixed.px: 18
-- ftd.text: $person-data.profile
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: $person-data.email
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: $person-data.phone
role: $inherited.types.fine-print
color: $inherited.colors.text
-- ftd.text: 🏠
role: $inherited.types.fine-print
color: $inherited.colors.text
-- end: ftd.row
-- ftd.column:
min-height.fixed.px: 18
width: fill-container
-- ftd.text: $person-data.address
if: { person-data.show-address }
role: $inherited.types.fine-print
color: $inherited.colors.text
-- end: ftd.column
-- end: ftd.column
-- ftd.text:
role: $inherited.types.copy-small
color: $inherited.colors.text-strong
$person-data.body
-- end: ftd.column
-- end: ftd.column
-- end: person-data
-- record person:
caption title:
optional ftd.image-src avatar:
optional string profile:
optional string email:
optional string phone:
optional string address:
optional body body:
-- person list persons-data:
-- person: Amit Upadhyay
profile: CEO, FifthTry Pvt. Ltd.
avatar: $assets.files.static.amitu.jpg
email: [email protected]
phone: +91 1234123412
address: 66737 Reinke Park, Banglore - 560068
Sunglass(1, 2, 3), Dare to be scared book 😜, codename game, Bharat game, Chai
Garam game
-- person: Ganesh Salunke
profile: Senior Frontend Manager
avatar: $assets.files.static.ganeshs.jpg
email: [email protected]
phone: +91 222123412
address: 6 Spenser Drive, Banglore - 560068
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
nostrud exercitation ullamco laboris nisi ut.
-- end: persons-data