featured-post.php
3 weeks ago
index.php
3 weeks ago
single-album.php
3 weeks ago
videos.php
3 weeks ago
videos.php
30 lines
| 1 | <div class="cff-fb-section-wh cff-fb-sglelm-ctn cff-fb-section-videos" v-if="checkCreationFeedTypeChosen('videos')"> |
| 2 | <div class="cff-fb-section-wh-insd cff-fb-fs"> |
| 3 | <div class="cff-fb-sec-heading cff-fb-fs cff-fb-sglelm-left"> |
| 4 | <h4>{{addVideosPostScreen.mainHeading}}</h4> |
| 5 | <span class="sb-caption sb-lighter">{{addVideosPostScreen.description}}</span> |
| 6 | </div> |
| 7 | </div> |
| 8 | <div class="cff-fb-videotype-chooser cff-fb-fs"> |
| 9 | <div class="cff-fb-srcs-item" v-for="(videoType, videoTypeIndex) in addVideosPostScreen.sections" @click.prevent.default="changeVideoSource(videoType.id)" :data-active="videoType.id == videosTypeInfo.type"> |
| 10 | <div class="cff-fb-srcs-item-chkbx"> |
| 11 | <div class="cff-fb-srcs-item-chkbx-ic"></div> |
| 12 | </div> |
| 13 | <div class="cff-fb-srcs-item-inf"> |
| 14 | <div class="cff-fb-srcs-item-name"> |
| 15 | <span class="sb-small-p sb-bold" v-html="videoType.heading"></span> |
| 16 | </div> |
| 17 | <div class="cff-fb-srcs-item-description" v-html="videoType.description"></div> |
| 18 | </div> |
| 19 | </div> |
| 20 | </div> |
| 21 | <div class="cff-fb-section-wh-insd cff-fb-section-video-playlist cff-fb-fs" v-show="videosTypeInfo.type == 'playlist'"> |
| 22 | <div class="cff-fb-sec-heading cff-fb-fs cff-fb-sglelm-left"> |
| 23 | <strong>{{addVideosPostScreen.inputLabel}}</strong> |
| 24 | <input type="text" class="cff-fb-wh-inp cff-fb-fs" placeholder="https://" v-model="videosTypeInfo.playListUrl"> |
| 25 | <span class="sb-caption sb-lighter">{{addVideosPostScreen.inputDescription}}</span> |
| 26 | <strong class="cff-fb-sglelm-errormsg" v-show="videosTypeInfo.playListUrlError">{{addVideosPostScreen.errorMessage}}</strong> |
| 27 | </div> |
| 28 | </div> |
| 29 | |
| 30 | </div> |