Posts

Showing posts from March 21, 2019

ABS-CBN Film Archives

The ABS-CBN Film Archives , also called ABS-CBN Archives , is a state-of-the-art film archive in the Philippines located at the basement of ELJ Communications Center in Eugenio Lopez Drive, Diliman, Quezon City. [1] It is a member of the Southeast Asia-Pacific Audio-Visual Archive Association, as well as the Society of Filipino Archivists for Film or Sofia. At present, ABS-CBN Film Archives holds about 2,400 Filipino films from Star Cinema, LVN Pictures, Regal Films, VIVA Films, Seiko Films, Cinema Artists, Sampaguita Pictures, OctoArts Films, Imus Productions, RVQ Productions, Cine Suerte, NV Productions along with the cinema libraries of Dolphy, Nora Aunor, Fernando Poe Jr., Rudy Fernandez, Ramon Revilla, and Armida Siguion-Reyna. [2] [3] ABS-CBN Film Archives holds the largest film collection in the country. [4] It is currently headed by Leo Katigbak. Contents 1 Facility 2 Digital film restoration 3 References 4 External links Facility The 500 sq

Vue list item on click details

Image
1 I have this Vue app var app = new Vue({ el: '#main', delimiters: ['${', '}'], data () { posts: [ { id: 1, title: 'Post title 1', description: 'Post description 1' }, { id: 2, title: 'Post title 2', description: 'Post description 2' }, { id: 3, title: 'Post title 3', description: 'Post description 3' } ], }, methods: { getPostData: function (event) { } } }); <div id="main"> <ul> <li v-for="(post, index) in posts"><a @click="getPostData">${ post.titl