Video Gallery

Dynamic Breadcrumb
Launch of ANI - Dr. Deepak Mohanty

Dr. Deepak Mohanty, Chairperson, PFRDA, addressed the ceremonial launch of the Association of NPS Intermediaries (ANI) in Mumbai. He highlighted that ANI will play a pivotal role in promoting the growth of NPS as a key retirement planning tool for India’s citizens.

January 29, 2025

An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "". The expected format was: "yyyy-MM-dd hh:mm".
The nested reason given follows:
Unparseable date: ""

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #assign formattedDate = UploadedOn.ge...  [in template "57581103840604#20120#220270" at line 3, column 5]
----
1<#assign inputFormat = "yyyy-MM-dd hh:mm" /> 
2<#if (UploadedOn.getData())??> 
3    <#assign formattedDate = UploadedOn.getData()?date(inputFormat)?string("MMMM dd, yyyy") /> 
4</#if> 
5 
6<#if (VideoLink.getData())?has_content> 
7    <div class="container mt-5"> 
8        <div class="card videoCard"> 
9            <div class="video-container"> 
10                <iframe src="${VideoLink.getData()}"  
11                        title="${.vars["reserved-article-title"].data}" 
12                        frameborder="0"  
13                        allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"  
14                        allowfullscreen></iframe> 
15            </div> 
16            <div class="card-body"> 
17                <h5 class="card-title">${.vars["reserved-article-title"].data}</h5> 
18                <p class="card-text description">${.vars["reserved-article-description"].data}</p> 
19                <p class="card-text date"><#if (UploadedOn.getData())??>${formattedDate}</#if></p> 
20            </div> 
21        </div> 
22    </div> 
23</#if> 
24 
25<style> 
26    .videoCard { 
27        max-width: 600px; 
28        border-radius: 8px; 
29        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
30
31    .card-body { 
32        padding: 16px; 
33
34    .card-title { 
35        font-size: 20px; 
36        margin-bottom: 8px; 
37        min-height: 60px; 
38        display: -webkit-box; 
39        -webkit-line-clamp: 2; 
40        -webkit-box-orient: vertical; 
41        overflow: hidden; 
42        text-overflow: ellipsis; 
43
44    .card-text.description { 
45        font-size: 16px; 
46        margin-bottom: 8px; 
47        min-height: 72px; 
48        display: -webkit-box; 
49        -webkit-line-clamp: 3; 
50        -webkit-box-orient: vertical; 
51        overflow: hidden; 
52        text-overflow: ellipsis; 
53
54    .card-text.date { 
55        font-size: 16px; 
56        color: #666; 
57
58    .video-container { 
59        position: relative; 
60        width: 100%; 
61        border-top-left-radius: 8px; 
62        border-top-right-radius: 8px; 
63        height: 250px; 
64        overflow: hidden; 
65
66    .video-container iframe { 
67        position: absolute; 
68        top: 0; 
69        left: 0; 
70        width: 100%; 
71        height: 100%; 
72
73</style> 
Showing 1 to 2 of 2