generated from fastn-stack/fastn-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ftd
1282 lines (780 loc) · 20.1 KB
/
index.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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- import: meenukumari28.github.io/pink-tree/common
-- import: meenukumari28.github.io/pink-tree/blog-articles/sample-post-1
-- my-ds.page: Design
full-width: true
sidebar: false
Lorem ipsum dolor sit amet. Ut aperiam quia 33 omnis quae eum dolorem quaerat.
Ut repudiandae minima et beatae dolorem ut corrupti
-- featured-post:
post-data: $sample-post-1.meta
-- posts:
-- post-card:
post-data: $sample-post-1.meta1
-- post-card:
post-data: $sample-post-1.meta2
-- post-card:
post-data: $sample-post-1.meta1
-- post-card:
post-data: $sample-post-1.meta2
-- post-card:
post-data: $sample-post-1.meta1
-- post-card:
post-data: $sample-post-1.meta2
-- end: posts
-- end: my-ds.page
-- component featured-post:
common.post-meta post-data:
optional string cta-primary:
optional string cta-primary-url:
optional string cta-secondary:
optional string cta-secondary-url:
optional string info:
optional string link:
-- ftd.column:
width: fill-container
-- featured-post-card: $featured-post.post-data.title
timestamp: $featured-post.post-data.published-on
author: $featured-post.post-data.author
body: $featured-post.post-data.body
image: $featured-post.post-data.post-image
url: $featured-post.post-data.post-url
tag: $featured-post.post-data.tag
info: $featured-post.info
cta-primary: $featured-post.cta-primary
cta-primary-url: $featured-post.cta-primary-url
cta-secondary: $featured-post.cta-secondary
cta-secondary-url: $featured-post.cta-secondary-url
link: $featured-post.link
-- end: ftd.column
-- end: featured-post
-- component featured-post-card:
caption title:
optional string timestamp:
optional common.author-meta author:
optional ftd.image-src image:
optional string link:
optional string tag:
optional body body:
optional string info:
optional string cta-primary:
optional string cta-primary-url:
optional string cta-secondary:
optional string cta-secondary-url:
optional string url:
optional boolean $cta-hover: false
-- ftd.column:
width: fill-container
-- ftd.desktop:
-- featured-post-card-desktop: $featured-post-card.title
body: $featured-post-card.body
image: $featured-post-card.image
url: $featured-post-card.url
tag: $featured-post-card.tag
-- end: ftd.desktop
-- ftd.mobile:
-- featured-post-card-mobile: $featured-post-card.title
image: $featured-post-card.image
url: $featured-post-card.url
tag: $featured-post-card.tag
-- end: ftd.mobile
-- end: ftd.column
-- end: featured-post-card
-- component featured-post-card-desktop:
caption title:
optional body body:
optional ftd.image-src image:
optional string url:
optional string tag:
-- ftd.column:
padding-vertical.px: 54
width: fill-container
spacing.fixed.px: 36
role: $inherited.types.copy-regular
color: $inherited.colors.text
-- ftd.row:
width: fill-container
spacing.fixed.px: 48
-- ftd.image:
src: $featured-post-card-desktop.image
height.fixed.px: 480
link: $featured-post-card-desktop.url
-- ftd.column:
spacing.fixed.px: 12
align-self: center
-- ftd.text: $featured-post-card-desktop.tag
role: $inherited.types.copy-regular
style: bold
color: $inherited.colors.cta-primary.text
-- ftd.text: $featured-post-card-desktop.title
role: $inherited.types.heading-medium
color: $inherited.colors.text-strong
link: $featured-post-card-desktop.url
-- ftd.text:
if : { featured-post-card-desktop.body != NULL }
role: $inherited.types.copy-regular
color: $inherited.colors.text-strong
$featured-post-card-desktop.body
-- end: ftd.column
-- end: ftd.row
-- end: ftd.column
-- end: featured-post-card-desktop
-- component featured-post-card-mobile:
caption title:
optional ftd.image-src image:
optional string url:
optional string tag:
-- ftd.column:
width: fill-container
spacing.fixed.px: 18
role: $inherited.types.copy-regular
color: $inherited.colors.text
-- ftd.image:
width: fill-container
src: $featured-post-card-mobile.image
link: $featured-post-card-mobile.url
-- ftd.text: $featured-post-card-mobile.tag
role: $inherited.types.copy-regular
style: bold
color: $inherited.colors.cta-primary.text
-- ftd.text: $featured-post-card-mobile.title
role: $inherited.types.heading-small
color: $inherited.colors.text-strong
link: $featured-post-card-mobile.url
-- end: ftd.column
-- end: featured-post-card-mobile
-- component post:
common.post-meta meta:
children container:
optional string previous-cta-txt: Back to blog
optional string previous-cta-url:
optional string share-txt: Share
optional boolean sidebar: false
ftd.ui list right-sidebar:
-- ftd.column:
width: fill-container
-- article-card: $post.meta.title
image: $post.meta.post-image
author: $post.meta.author
timestamp: $post.meta.published-on
tag: $post.meta.tag
body: $post.meta.body
-- ftd.column:
children: $post.container
-- end: ftd.column
-- end: ftd.column
-- end: post
-- component article-card:
caption title:
optional string timestamp:
optional common.author-meta author:
optional ftd.image-src image:
optional string url:
optional string tag:
optional body body:
children container:
common.social-media list social-links: $common.social-links
-- ftd.column:
width: fill-container
-- ftd.desktop:
-- article-card-desktop: $article-card.title
timestamp: $article-card.timestamp
author: $article-card.author
image: $article-card.image
url: $article-card.url
tag: $article-card.tag
body: $article-card.body
social-links: $article-card.social-links
-- end: ftd.desktop
-- ftd.mobile:
-- article-card-mobile: $article-card.title
timestamp: $article-card.timestamp
author: $article-card.author
image: $article-card.image
url: $article-card.url
tag: $article-card.tag
body: $article-card.body
social-links: $article-card.social-links
-- end: ftd.mobile
-- end: ftd.column
-- end: article-card
-- component article-card-desktop:
caption title:
optional string timestamp:
optional common.author-meta author:
optional ftd.image-src image:
optional string url:
optional string tag:
optional body body:
common.social-media list social-links:
-- ftd.column:
width: fill-container
spacing.fixed.px: 18
padding-bottom.px: 32
-- ftd.column:
width.fixed.px: 1000
padding-left.px: 96
spacing.fixed.px: 20
-- ftd.text: $article-card-desktop.tag
if: { article-card-desktop.tag != NULL }
style: extra-bold
color: $inherited.colors.cta-primary.text
role: $inherited.types.copy-small
-- ftd.text: $article-card-desktop.title
role: $inherited.types.heading-large
color: $inherited.colors.text-strong
style: bold
-- ftd.text:
role: $inherited.types.copy-large
color: $inherited.colors.text-strong
$article-card-desktop.body
-- ftd.row:
spacing.fixed.px: 18
color: $inherited.colors.text
role: $inherited.types.copy-regular
align-content: center
-- ftd.image:
src: $article-card-desktop.author.image
-- ftd.row:
spacing.fixed.px: 8
-- ftd.text: by
-- ftd.text: $article-card-desktop.author.title
-- end: ftd.row
-- ftd.row:
border-left-width.px: 1
border-color: $inherited.colors.border
height.fixed.px: 32
padding-left.px: 18
color: $inherited.colors.text
role: $inherited.types.copy-regular
spacing.fixed.px: 8
-- ftd.text: Posted
-- ftd.text: $article-card-desktop.timestamp
if: { article-card-desktop.timestamp != NULL }
-- end: ftd.row
-- end: ftd.row
-- end: ftd.column
-- ftd.row:
width: fill-container
spacing.fixed.px: 24
-- ftd.column:
spacing.fixed.px: 24
align-content: center
-- ftd.image:
$loop$: $article-card-desktop.social-links as $obj
src: $obj.src
cursor: pointer
link: $obj.link
-- end: ftd.column
-- ftd.image:
if: { article-card-desktop.image != NULL }
src: $article-card-desktop.image
width: fill-container
-- end: ftd.row
-- end: ftd.column
-- end: article-card-desktop
-- component article-card-mobile:
caption title:
optional string timestamp:
optional common.author-meta author:
optional ftd.image-src image:
optional string url:
optional string tag:
optional body body:
common.social-media list social-links:
-- ftd.column:
width: fill-container
spacing.fixed.px: 18
padding-bottom.px: 32
-- ftd.column:
align-content: center
spacing.fixed.px: 20
-- ftd.text: $article-card-mobile.tag
if: { article-card-mobile.tag != NULL }
style: extra-bold
color: $inherited.colors.cta-primary.text
role: $inherited.types.copy-regular
-- ftd.text: $article-card-mobile.title
role: $inherited.types.heading-large
color: $inherited.colors.text-strong
style: extra-bold
text-align: center
-- ftd.text:
role: $inherited.types.copy-large
color: $inherited.colors.text-strong
text-align: center
$article-card-mobile.body
-- ftd.row:
width: fill-container
color: $inherited.colors.text
role: $inherited.types.copy-regular
align-content: center
spacing.fixed.px: 8
-- ftd.image:
src: $article-card-mobile.author.image
-- ftd.row:
spacing.fixed.px: 8
-- ftd.text: by
-- ftd.text: $article-card-mobile.author.title
-- end: ftd.row
-- ftd.row:
border-left-width.px: 1
border-color: $inherited.colors.border
height.fixed.px: 32
color: $inherited.colors.text
role: $inherited.types.copy-regular
spacing.fixed.px: 8
align-content: center
padding-left.px: 4
-- ftd.text: Posted
-- ftd.text: $article-card-mobile.timestamp
if: { article-card-mobile.timestamp != NULL }
-- end: ftd.row
-- end: ftd.row
-- ftd.row:
spacing.fixed.px: 24
align-content: center
-- ftd.image:
$loop$: $article-card-mobile.social-links as $obj
src: $obj.src
cursor: pointer
link: $obj.link
-- end: ftd.row
-- end: ftd.column
-- ftd.row:
width: fill-container
-- ftd.image:
if: { article-card-mobile.image != NULL }
src: $article-card-mobile.image
width: fill-container
-- end: ftd.row
-- end: ftd.column
-- end: article-card-mobile
-- component posts:
optional caption title:
optional body body:
children container:
optional string sub-heading:
-- ftd.column:
width: fill-container
-- ftd.desktop:
-- ftd.row:
children: $posts.container
wrap: true
spacing.fixed.px: 38
-- end: ftd.row
-- end: ftd.desktop
-- ftd.mobile:
-- ftd.column:
children: $posts.container
spacing.fixed.px: 16
-- end: ftd.column
-- end: ftd.mobile
-- end: ftd.column
-- end: posts
-- component post-card:
common.post-meta post-data:
-- post-card-ui: $post-card.post-data.title
image: $post-card.post-data.post-image
url: $post-card.post-data.post-url
tag: $post-card.post-data.tag
-- end: post-card
-- component post-card-ui:
caption title:
optional ftd.image-src image:
optional string url:
optional string tag:
-- ftd.column:
-- ftd.desktop:
-- post-card-ui-desktop: $post-card-ui.title
image: $post-card-ui.image
url: $post-card-ui.url
tag: $post-card-ui.tag
-- end: ftd.desktop
-- ftd.mobile:
-- post-card-ui-mobile: $post-card-ui.title
image: $post-card-ui.image
url: $post-card-ui.url
tag: $post-card-ui.tag
-- end: ftd.mobile
-- end: ftd.column
-- end: post-card-ui
-- component post-card-ui-desktop:
caption title:
optional ftd.image-src image:
optional string url:
optional string tag:
-- ftd.column:
width.fixed.px: 384
margin-top.px: 24
margin-bottom.px: 32
spacing.fixed.px: 12
-- ftd.image:
src: $post-card-ui-desktop.image
width: fill-container
height.fixed.px: 256
link: $post-card-ui-desktop.url
-- ftd.text: $post-card-ui-desktop.tag
style: bold
color: $inherited.colors.cta-primary.text
role: $inherited.types.copy-small
-- ftd.text: $post-card-ui-desktop.title
role: $inherited.types.heading-small
color: $inherited.colors.text-strong
link: $post-card-ui-desktop.url
-- end: ftd.column
-- end: post-card-ui-desktop
-- component post-card-ui-mobile:
caption title:
optional ftd.image-src image:
optional string url:
optional string tag:
-- ftd.row:
border-top-width.px: 1
border-color: $inherited.colors.border
width: fill-container
spacing.fixed.px: 18
margin-top.px: 24
align-content: center
padding-vertical.px: 16
-- ftd.column:
spacing.fixed.px: 12
-- ftd.text: $post-card-ui-mobile.tag
style: bold
color: $inherited.colors.cta-primary.text
role: $inherited.types.copy-regular
-- ftd.text: $post-card-ui-mobile.title
role: $inherited.types.heading-tiny
color: $inherited.colors.text-strong
link: $post-card-ui-mobile.url
-- end: ftd.column
-- ftd.image:
src: $post-card-ui-mobile.image
width.fixed.px: 100
height.fixed.px: 66
link: $post-card-ui-mobile.url
-- end: ftd.row
-- end: post-card-ui-mobile
-- component search-card:
-- ftd.column:
padding.px: 12
border-radius.px: 16
background.solid: $inherited.colors.background.step-1
-- ftd.text-input:
placeholder: Search
padding-vertical.px: 4
padding-vertical.px if { ftd.device == "mobile" }: 14
padding-horizontal.px: 8
width.fixed.px: 250
width.fixed.px if { ftd.device == "mobile" }: 300
type: text
background.solid: $inherited.colors.background.step-1
-- end: ftd.column
-- end: search-card
-- component topic:
caption title:
common.tags-list list topics:
-- ftd.column:
width: fill-container
-- ftd.desktop:
-- topic-desktop: $topic.title
topics: $topic.topics
-- end: ftd.desktop
-- ftd.mobile:
-- topic-mobile: $topic.title
topics: $topic.topics
-- end: ftd.mobile
-- end: ftd.column
-- end: topic
-- component topic-desktop:
caption title:
common.tags-list list topics:
-- ftd.column:
padding-vertical.px: 8
width: fill-container
spacing.fixed.px: 12
-- ftd.text: $topic-desktop.title
role: $inherited.types.copy-small
color: $inherited.colors.text
style: semi-bold
-- ftd.row:
spacing.fixed.px: 16
wrap: true
align-content: center
-- topics-detail:
$loop$: $topic-desktop.topics as $obj
title: $obj.title
tag-link: $obj.tag-link
-- end: ftd.row
-- end: ftd.column
-- end: topic-desktop
-- component topic-mobile:
caption title:
common.tags-list list topics:
-- ftd.column:
padding-vertical.px: 8
width: fill-container
spacing.fixed.px: 24
-- ftd.text: $topic-mobile.title
role: $inherited.types.copy-large
color: $inherited.colors.text
-- ftd.row:
spacing.fixed.px: 16
wrap: true
-- topics-detail:
$loop$: $topic-mobile.topics as $obj
title: $obj.title
tag-link: $obj.tag-link
-- end: ftd.row
-- end: ftd.column
-- end: topic-mobile
-- component topics-detail:
caption title:
string tag-link:
boolean $mouse-in: false
-- ftd.row:
spacing.fixed.px: 32
background.solid: $inherited.colors.background.step-1
background.solid if { topics-detail.mouse-in }: $inherited.colors.cta-primary.hover
$on-mouse-enter$: $ftd.set-bool($a = $topics-detail.mouse-in, v = true)
$on-mouse-leave$: $ftd.set-bool($a = $topics-detail.mouse-in, v = false)
height: hug-content
border-radius.px: 30
padding-vertical.px: 12
padding-horizontal.px: 12
-- ftd.text: $topics-detail.title
role: $inherited.types.copy-small
color: $inherited.colors.cta-primary.text
color if { topics-detail.mouse-in }: $inherited.colors.text-strong
link: $topics-detail.tag-link
style: semi-bold
-- end: ftd.row
-- end: topics-detail
-- component footer:
string copyright: Copyright ©2022. Fastn Inc.
optional ftd.image-src site-logo:
integer logo-width: $common.logo-width
integer logo-height: $common.logo-height
optional string site-url: $common.site-url
optional string site-name:
optional body body:
-- ftd.column:
width: fill-container
-- ftd.desktop:
-- footer-desktop:
copyright: $footer.copyright
site-logo: $footer.site-logo
logo-width: $footer.logo-width
logo-height: $footer.logo-height
site-url: $footer.site-url
site-name: $footer.site-name
body: $footer.body
-- end: ftd.desktop
-- ftd.mobile:
-- footer-mobile:
copyright: $footer.copyright
site-logo: $footer.site-logo
logo-width: $footer.logo-width
logo-height: $footer.logo-height
site-url: $footer.site-url
site-name: $footer.site-name
body: $footer.body
-- end: ftd.mobile
-- end: ftd.column
-- end: footer
-- component footer-desktop:
optional body body:
string copyright:
optional ftd.image-src site-logo:
integer logo-width:
integer logo-height:
optional string site-url:
optional string site-name:
-- ftd.row:
width: fill-container
spacing: space-between
align-content: center
role: $inherited.types.copy-small
color: $inherited.colors.text
-- ftd.row:
max-width.fixed.percent: 50
width: fill-container
align-content: center
padding-vertical.px: 42
background.solid: $inherited.colors.background.base
spacing.fixed.px: 16
-- ftd.text:
if: { footer-desktop.body != NULL }