update
This commit is contained in:
parent
e9a68aa093
commit
7df26ca66d
|
|
@ -928,7 +928,7 @@
|
||||||
var isLinkImage = $parentA.length > 0 && $parentA.text().replace(/\u00a0/g, '').trim() === "";
|
var isLinkImage = $parentA.length > 0 && $parentA.text().replace(/\u00a0/g, '').trim() === "";
|
||||||
|
|
||||||
// --- 1. 處理「裝飾性圖片」標註 ---
|
// --- 1. 處理「裝飾性圖片」標註 ---
|
||||||
if (currentAlt === "announcement image" || currentAlt === "裝飾圖片" || currentTitle === "裝飾圖片" || currentAlt === "這是一張圖片" || currentTitle === "這是一張圖片") {
|
if (currentAlt === "announcement image" || currentAlt === "裝飾圖片" || currentTitle === "裝飾圖片" || currentAlt === "這是一張圖片" || currentTitle === "這是一張圖片"||currentAlt === "This is a image" ||currentTitle === "This is a image"){
|
||||||
$img.attr('alt', '');
|
$img.attr('alt', '');
|
||||||
$img.removeAttr('title');
|
$img.removeAttr('title');
|
||||||
return;
|
return;
|
||||||
|
|
@ -1778,17 +1778,32 @@ $(function() {
|
||||||
var key = getTabKey($currentTab);
|
var key = getTabKey($currentTab);
|
||||||
var $visibleItems = getVisibleItems($scope, key);
|
var $visibleItems = getVisibleItems($scope, key);
|
||||||
|
|
||||||
// Shift+Tab:若是第一個連結,跳回對應頁籤
|
// 找出當前類別的 .w-annc__more
|
||||||
|
var $more = $scope.find('.w-annc__more-wrap a, .w-annc__more').filter(':visible').first();
|
||||||
|
|
||||||
|
// Shift+Tab:若在第一個連結,跳回對應頁籤
|
||||||
if (e.which === 9 && e.shiftKey) {
|
if (e.which === 9 && e.shiftKey) {
|
||||||
if ($currentLink.is($visibleItems.find('a').first())) {
|
if ($currentLink.is($visibleItems.find('a').first())) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
$currentTab.focus();
|
$currentTab.focus();
|
||||||
}
|
}
|
||||||
|
// Shift+Tab:若在 .w-annc__more,跳回最後一個公告連結
|
||||||
|
if ($more.length && $currentLink.is($more)) {
|
||||||
|
e.preventDefault();
|
||||||
|
$visibleItems.find('a').last().focus();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Tab:若是最後一個連結,跳到下一個頁籤並切換
|
// Tab:若在最後一個連結,跳到 .w-annc__more
|
||||||
if (e.which === 9 && !e.shiftKey) {
|
if (e.which === 9 && !e.shiftKey) {
|
||||||
if ($currentLink.is($visibleItems.find('a').last())) {
|
if ($currentLink.is($visibleItems.find('a').last())) {
|
||||||
|
if ($more.length) {
|
||||||
|
e.preventDefault();
|
||||||
|
$more.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Tab:若在 .w-annc__more,才跳到下一個頁籤
|
||||||
|
if ($more.length && $currentLink.is($more)) {
|
||||||
var $nextTab = $currentTab.next('.filter_tab');
|
var $nextTab = $currentTab.next('.filter_tab');
|
||||||
if ($nextTab.length > 0) {
|
if ($nextTab.length > 0) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
@ -2948,13 +2963,139 @@ $(document).ready(function () {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
//cycle2無障礙
|
||||||
|
$(document).ready(function() {
|
||||||
|
// 取得頁面上所有的 Cycle2 輪播圖
|
||||||
|
var $allSlideshows = $('.cycle-slideshow');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 核心無障礙狀態刷新函式
|
||||||
|
*/
|
||||||
|
function refreshCycleA11y($el) {
|
||||||
|
var $items = $el.find('.w-annc__item, .widget-link__item, [class*="cycle-slide"], .widget-pic');
|
||||||
|
|
||||||
|
$items.each(function() {
|
||||||
|
var $slide = $(this);
|
||||||
|
var isActive = $slide.hasClass('cycle-slide-active');
|
||||||
|
|
||||||
|
if (isActive) {
|
||||||
|
// ✅ li 只設 aria-hidden,不加 tabindex
|
||||||
|
$slide.attr('aria-hidden', 'false');
|
||||||
|
$slide.removeAttr('tabindex'); // ← 確保 li 本身沒有 tabindex
|
||||||
|
$slide.find('a, button, input, [tabindex]').attr('tabindex', '0');
|
||||||
|
} else {
|
||||||
|
// 隱藏中的投影片:徹底隔離
|
||||||
|
$slide.attr('aria-hidden', 'true');
|
||||||
|
$slide.removeAttr('tabindex');
|
||||||
|
$slide.find('a, button, input, [tabindex]').attr('tabindex', '-1');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// --- 防鎖死邊界處理 (Shift + Tab) ---
|
||||||
|
var $container = $el.closest('.w-annc, .widget-link_wrapper, .widget-link');
|
||||||
|
var $prevBtn = $container.find('.btn-left, .prev-button');
|
||||||
|
|
||||||
|
$el.find('.cycle-slide-active a, .cycle-slide-active button').first()
|
||||||
|
.off('keydown.a11y').on('keydown.a11y', function(e) {
|
||||||
|
if (e.keyCode === 9 && e.shiftKey) {
|
||||||
|
if ($prevBtn.length) {
|
||||||
|
e.preventDefault();
|
||||||
|
$prevBtn.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 針對 widget-link 非語意化標籤 (如 i 標籤當按鈕) 的無障礙補強
|
||||||
|
*/
|
||||||
|
function refreshCycleA11y($el) {
|
||||||
|
var $items = $el.find('.w-annc__item, .widget-link__item, [class*="cycle-slide"]');
|
||||||
|
|
||||||
|
$items.each(function() {
|
||||||
|
var $slide = $(this);
|
||||||
|
var isActive = $slide.hasClass('cycle-slide-active');
|
||||||
|
|
||||||
|
if (isActive) {
|
||||||
|
// ✅ li 只設 aria-hidden,不加 tabindex
|
||||||
|
$slide.attr('aria-hidden', 'false');
|
||||||
|
$slide.removeAttr('tabindex'); // ← 確保 li 本身沒有 tabindex
|
||||||
|
$slide.find('a, button, input, [tabindex]').attr('tabindex', '0');
|
||||||
|
} else {
|
||||||
|
// 隱藏中的投影片:徹底隔離
|
||||||
|
$slide.attr('aria-hidden', 'true');
|
||||||
|
$slide.removeAttr('tabindex');
|
||||||
|
$slide.find('a, button, input, [tabindex]').attr('tabindex', '-1');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// --- 防鎖死邊界處理 (Shift + Tab) ---
|
||||||
|
var $container = $el.closest('.w-annc, .widget-link_wrapper, .widget-link');
|
||||||
|
var $prevBtn = $container.find('.btn-left, .prev-button');
|
||||||
|
|
||||||
|
$el.find('.cycle-slide-active a, .cycle-slide-active button').first()
|
||||||
|
.off('keydown.a11y').on('keydown.a11y', function(e) {
|
||||||
|
if (e.keyCode === 9 && e.shiftKey) {
|
||||||
|
if ($prevBtn.length) {
|
||||||
|
e.preventDefault();
|
||||||
|
$prevBtn.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 輔助函式:切換後更新 A11y 狀態並鎖定焦點
|
||||||
|
function triggerPostUpdate($el, $activeBtn) {
|
||||||
|
$el.one('cycle-after', function() {
|
||||||
|
setTimeout(function() {
|
||||||
|
refreshCycleA11y($el);
|
||||||
|
$activeBtn.focus();
|
||||||
|
}, 300);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 舊有按鈕事件相容與整合
|
||||||
|
*/
|
||||||
|
$(document).on('keydown', '.btn-right, .btn-left', function(e) {
|
||||||
|
if (e.keyCode === 13) {
|
||||||
|
var $btn = $(this);
|
||||||
|
var $el = $btn.closest('.w-annc').find('.cycle-slideshow');
|
||||||
|
triggerPostUpdate($el, $btn);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 綁定 Cycle2 核心事件
|
||||||
|
*/
|
||||||
|
$allSlideshows.on('cycle-initialized cycle-after', function() {
|
||||||
|
var $this = $(this);
|
||||||
|
setTimeout(function() {
|
||||||
|
refreshCycleA11y($this);
|
||||||
|
}, 300);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 初始化執行
|
||||||
|
patchWidgetLinkElements();
|
||||||
|
|
||||||
|
$allSlideshows.each(function() {
|
||||||
|
var $this = $(this);
|
||||||
|
setTimeout(function() {
|
||||||
|
refreshCycleA11y($this);
|
||||||
|
}, 500);
|
||||||
|
});
|
||||||
|
});
|
||||||
//post
|
//post
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
$('iframe.twitter-share-button, iframe.twitter-tweet-button').each(function () {
|
var pageLang = ($('html').attr('lang') || 'zh-Hant').toLowerCase();
|
||||||
$(this).attr('title', '分享至 X 在新視窗開啟');
|
var isEn = pageLang.startsWith('en');
|
||||||
});
|
var title = isEn ? 'Share to X Open in new window' : '分享至 X 在新視窗開啟';
|
||||||
}, 1500);
|
|
||||||
|
$('iframe.twitter-share-button, iframe.twitter-tweet-button').each(function () {
|
||||||
|
$(this).attr('title', title);
|
||||||
|
});
|
||||||
|
}, 1500);
|
||||||
});
|
});
|
||||||
$(function() {
|
$(function() {
|
||||||
function bindIframeFocus() {
|
function bindIframeFocus() {
|
||||||
|
|
@ -3336,4 +3477,82 @@ $(function() {
|
||||||
// }
|
// }
|
||||||
// });
|
// });
|
||||||
|
|
||||||
|
//banner英文
|
||||||
|
$(function() {
|
||||||
|
function fixBannerA11yByLang() {
|
||||||
|
setTimeout(function() {
|
||||||
|
var pageLang = ($('html').attr('lang') || 'zh-Hant').toLowerCase();
|
||||||
|
var isEn = pageLang.startsWith('en');
|
||||||
|
|
||||||
|
var i18n = {
|
||||||
|
playControls: isEn ? 'Playback Controls' : '播放控制選項',
|
||||||
|
resume: isEn ? 'Play' : '繼續播放',
|
||||||
|
pause: isEn ? 'Pause' : '暫停播放',
|
||||||
|
prev: isEn ? 'Previous' : '上一張',
|
||||||
|
next: isEn ? 'Next' : '下一張',
|
||||||
|
slide: isEn ? 'Slide' : '第',
|
||||||
|
slideUnit: isEn ? '' : ' 張投影片'
|
||||||
|
};
|
||||||
|
|
||||||
|
$('.w-ba-banner').each(function() {
|
||||||
|
var $banner = $(this);
|
||||||
|
|
||||||
|
// ✅ 播放控制選項 radiogroup label
|
||||||
|
$banner.find('.controlplay').attr('aria-label', i18n.playControls);
|
||||||
|
|
||||||
|
// ✅ 繼續播放按鈕
|
||||||
|
$banner.find('.resume-slide').attr({
|
||||||
|
'aria-label': i18n.resume,
|
||||||
|
'title': i18n.resume
|
||||||
|
});
|
||||||
|
$banner.find('.resume-slide p').text(i18n.resume);
|
||||||
|
|
||||||
|
// ✅ 暫停播放按鈕
|
||||||
|
$banner.find('.pause-slide').attr({
|
||||||
|
'aria-label': i18n.pause,
|
||||||
|
'title': i18n.pause
|
||||||
|
});
|
||||||
|
$banner.find('.pause-slide p').text(i18n.pause);
|
||||||
|
|
||||||
|
// ✅ 上一張按鈕
|
||||||
|
$banner.find('.prev-button').attr('aria-label', i18n.prev);
|
||||||
|
|
||||||
|
// ✅ 下一張按鈕
|
||||||
|
$banner.find('.next-button').attr('aria-label', i18n.next);
|
||||||
|
|
||||||
|
// ✅ Pager 按鈕
|
||||||
|
var $slides = $banner.find('.w-ba-banner__slide');
|
||||||
|
$banner.find('.banner-pager button').each(function(index) {
|
||||||
|
var slideTitle = $slides.eq(index).data('cycle-title') || '';
|
||||||
|
var ariaLabel = isEn
|
||||||
|
? i18n.slide + ' ' + (index + 1) + (slideTitle ? ' ' + slideTitle : '')
|
||||||
|
: i18n.slide + (index + 1) + i18n.slideUnit + (slideTitle ? ' ' + slideTitle : '');
|
||||||
|
$(this).attr({
|
||||||
|
'aria-label': ariaLabel,
|
||||||
|
'title': ariaLabel
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// ✅ Cycle2 初始化後也重新處理 Pager(因為 pager 是動態產生的)
|
||||||
|
$('.w-ba-banner .cycle-slideshow').on('cycle-post-initialize cycle-after', function() {
|
||||||
|
var $banner = $(this).closest('.w-ba-banner');
|
||||||
|
var $slides = $banner.find('.w-ba-banner__slide');
|
||||||
|
$banner.find('.banner-pager button').each(function(index) {
|
||||||
|
var slideTitle = $slides.eq(index).data('cycle-title') || '';
|
||||||
|
var ariaLabel = isEn
|
||||||
|
? i18n.slide + ' ' + (index + 1) + (slideTitle ? ' ' + slideTitle : '')
|
||||||
|
: i18n.slide + (index + 1) + i18n.slideUnit + (slideTitle ? ' ' + slideTitle : '');
|
||||||
|
$(this).attr({
|
||||||
|
'aria-label': ariaLabel,
|
||||||
|
'title': ariaLabel
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
}, 800);
|
||||||
|
}
|
||||||
|
|
||||||
|
fixBannerA11yByLang();
|
||||||
|
});
|
||||||
}(jQuery, window));
|
}(jQuery, window));
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,11 @@
|
||||||
.fa-classic, .fa-regular, .fa-solid, .far, .fas ,.fa{
|
.fa-classic, .fa-regular, .fa-solid, .far, .fas ,.fa{
|
||||||
font-family: "FontAwesome";
|
font-family: "FontAwesome";
|
||||||
}
|
}
|
||||||
|
li#language-li {
|
||||||
|
@media(max-width:767px){
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
#orbit-bar .orbit-bar-inner > label:focus, #orbit-bar .orbit-bar-inner > label.focus{
|
#orbit-bar .orbit-bar-inner > label:focus, #orbit-bar .orbit-bar-inner > label.focus{
|
||||||
.orbit-bar-search-sign-language{
|
.orbit-bar-search-sign-language{
|
||||||
display: block
|
display: block
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
data-cycle-auto-height="{{base_image}}"
|
data-cycle-auto-height="{{base_image}}"
|
||||||
data-cycle-speed="{{speed}}"
|
data-cycle-speed="{{speed}}"
|
||||||
data-cycle-timeout="{{timeout}}"
|
data-cycle-timeout="{{timeout}}"
|
||||||
|
|
||||||
data-cycle-pager=".banner_caption_{{subpart-id}}"
|
data-cycle-pager=".banner_caption_{{subpart-id}}"
|
||||||
data-pager-template=""
|
data-pager-template=""
|
||||||
data-pager-active-class="active-slide"
|
data-pager-active-class="active-slide"
|
||||||
|
|
|
||||||
|
|
@ -49,20 +49,23 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
var flag = 1;
|
$('[data-subpart-id="{{subpart-id}}"] .pause-slide').click(function(){
|
||||||
$('.pause-slide').click(function(){
|
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle('pause');
|
||||||
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle('pause');
|
$(this).addClass('active')
|
||||||
});
|
$(this).parents('.controlplay').eq(0).find('.resume-slide').removeClass('active')
|
||||||
$('.resume-slide').click(function(){
|
});
|
||||||
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle('resume');
|
$('[data-subpart-id="{{subpart-id}}"] .resume-slide').click(function(){
|
||||||
});
|
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle('resume');
|
||||||
$('.next-button').off('click').on('click',function(){
|
$(this).addClass('active')
|
||||||
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle("next");
|
$(this).parents('.controlplay').eq(0).find('.pause-slide').removeClass('active')
|
||||||
|
});
|
||||||
|
$('[data-subpart-id="{{subpart-id}}"] .next-button').click(function(){
|
||||||
|
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle("next");
|
||||||
|
|
||||||
})
|
})
|
||||||
$('.prev-button').off('click').on('click',function(){
|
$('[data-subpart-id="{{subpart-id}}"] .prev-button').click(function(){
|
||||||
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle("prev");
|
$(this).parent("ul").parent('.w-ba-banner').find(".cycle-slideshow").cycle("prev");
|
||||||
});
|
});
|
||||||
/* 修正點:處理 Pager 無障礙朗讀文字 */
|
/* 修正點:處理 Pager 無障礙朗讀文字 */
|
||||||
$('.cycle-slideshow').on('cycle-post-initialize', function(event, optionHash) {
|
$('.cycle-slideshow').on('cycle-post-initialize', function(event, optionHash) {
|
||||||
var $container = $(this).closest('.w-ba-banner');
|
var $container = $(this).closest('.w-ba-banner');
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<ul class="i-annc__list row" data-level="0" data-list="announcements">
|
<ul class="i-annc__list row" data-level="0" data-list="announcements">
|
||||||
<li class="i-annc__item rotate0">
|
<li class="i-annc__item rotate0">
|
||||||
<div class="i-annc__img-wrap bullseye">
|
<div class="i-annc__img-wrap bullseye">
|
||||||
<a href="{{link_to_show}}" alt="{{img_description}}" title="{{img_description}}">
|
<a href="{{link_to_show}}" title="{{img_description}}">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}" title="{{img_description}}">
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}" title="{{img_description}}">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -2,9 +2,9 @@
|
||||||
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
||||||
<ul class="i-annc__list row" data-level="0" data-list="announcements">
|
<ul class="i-annc__list row" data-level="0" data-list="announcements">
|
||||||
<li class="i-annc__item col-md-3 col-sm-3">
|
<li class="i-annc__item col-md-3 col-sm-3">
|
||||||
<a href="{{link_to_show}}" alt="{{img_description}}" title="{{img_description}}">
|
<a href="{{link_to_show}}" title="{{img_description}}">
|
||||||
<div class="i-annc__img-wrap bullseye">
|
<div class="i-annc__img-wrap bullseye">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="" title="{{img_description}}">
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}">
|
||||||
</div>
|
</div>
|
||||||
<div class="i-annc__content-wrap">
|
<div class="i-annc__content-wrap">
|
||||||
<div class="i-annc__meta">
|
<div class="i-annc__meta">
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,10 @@
|
||||||
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
||||||
<ul class="i-annc__list" data-level="0" data-list="announcements">
|
<ul class="i-annc__list" data-level="0" data-list="announcements">
|
||||||
<li class="i-annc__item row">
|
<li class="i-annc__item row">
|
||||||
<a href="{{link_to_show}}" alt="{{img_description}}" title="{{img_description}}">
|
|
||||||
<div class="i-annc__img-wrap col-sm-4">
|
<div class="i-annc__img-wrap col-sm-4">
|
||||||
|
<a href="{{link_to_show}}" title="{{img_description}}">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="" title="{{img_description}}">
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="i-annc__content-wrap col-sm-8">
|
<div class="i-annc__content-wrap col-sm-8">
|
||||||
<div class="i-annc__meta">
|
<div class="i-annc__meta">
|
||||||
|
|
@ -28,7 +27,7 @@
|
||||||
</h4>
|
</h4>
|
||||||
<p class="i-annc__subtitle">{{subtitle}}</p>
|
<p class="i-annc__subtitle">{{subtitle}}</p>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
||||||
<ul class="i-annc__list" data-level="0" data-list="announcements">
|
<ul class="i-annc__list" data-level="0" data-list="announcements">
|
||||||
<li class="i-annc__item row">
|
<li class="i-annc__item row">
|
||||||
<a href="{{link_to_show}}" alt="{{img_description}}" title="{{img_description}}">
|
<a href="{{link_to_show}}" title="{{img_description}}">
|
||||||
<div class="i-annc__content-wrap col-sm-8">
|
<div class="i-annc__content-wrap col-sm-8">
|
||||||
<div class="i-annc__meta">
|
<div class="i-annc__meta">
|
||||||
<span class="i-annc__status-wrap" data-list="statuses" data-level="1">
|
<span class="i-annc__status-wrap" data-list="statuses" data-level="1">
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
<p class="i-annc__subtitle">{{subtitle}}</p>
|
<p class="i-annc__subtitle">{{subtitle}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="i-annc__img-wrap col-sm-4">
|
<div class="i-annc__img-wrap col-sm-4">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="" title="{{img_description}}">
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<li class="i-annc__item row">
|
<li class="i-annc__item row">
|
||||||
<a href="{{link_to_show}}" title="{{img_description}}">
|
<a href="{{link_to_show}}" title="{{img_description}}">
|
||||||
<div class="i-annc__img-wrap col-sm-4">
|
<div class="i-annc__img-wrap col-sm-4">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="" title="{{img_description}}">
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}">
|
||||||
</div>
|
</div>
|
||||||
<div class="i-annc__content-wrap col-sm-8">
|
<div class="i-annc__content-wrap col-sm-8">
|
||||||
<div class="i-annc__meta">
|
<div class="i-annc__meta">
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
<p class="i-annc__subtitle">{{subtitle}}</p>
|
<p class="i-annc__subtitle">{{subtitle}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="i-annc__img-wrap col-sm-4">
|
<div class="i-annc__img-wrap col-sm-4">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="" title="{{img_description}}">
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}">
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,12 @@
|
||||||
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
<h3 class="i-annc__page-title"><span>{{page-title}}</span></h3>
|
||||||
<ul class="i-annc__list row" data-level="0" data-list="event_news">
|
<ul class="i-annc__list row" data-level="0" data-list="event_news">
|
||||||
<li class="i-annc__item col-md-4">
|
<li class="i-annc__item col-md-4">
|
||||||
<a href="{{link_to_show}}" title="{{img_description}}">
|
|
||||||
<div class="i-annc__img-wrap bullseye" style="position:relative">
|
<div class="i-annc__img-wrap bullseye" style="position:relative">
|
||||||
<img class="i-annc__img" src="{{img_src}}" alt="" title="{{img_description}}">
|
<a href="{{link_to_show}}" title="{{img_description}}">
|
||||||
</div>
|
<img class="i-annc__img" src="{{img_src}}" alt="{{img_description}}">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
<div class="i-annc__content-wrap">
|
<div class="i-annc__content-wrap">
|
||||||
<div class="i-annc__meta">
|
<div class="i-annc__meta">
|
||||||
<span class="i-annc__status-wrap" data-list="statuses" data-level="1">
|
<span class="i-annc__status-wrap" data-list="statuses" data-level="1">
|
||||||
|
|
@ -27,7 +29,7 @@
|
||||||
<p class="i-annc__subtitle">{{subtitle}}</p>
|
<p class="i-annc__subtitle">{{subtitle}}</p>
|
||||||
<p class="s-annc__post-notes">{{notes}}</p>
|
<p class="s-annc__post-notes">{{notes}}</p>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue