ORIENT/themes/modern2/pages/test.htm

89 lines
3.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

title = "Test"
url = "/test/:id"
layout = "new/master-inside"
is_hidden = 0
robot_index = "index"
robot_follow = "follow"
==
<?php
function onStart(){
$this['test'] = Tps\Tps\Models\Test::where('id', $this->param('id'))->get()->first();
}
?>
==
<!-- Test ================================== -->
<main class="article">
<div class="container">
<div class="article-wrap">
<div class="trending-head affiche-head">
<h2>{{'test.tests'|_}}</h2>
<span></span>
</div>
<div class="article-inner">
<div class="article-content">
<div class="article-content-top">
<div class="article-head">
<h2>
{{ test.title }}
</h2>
</div>
<div class="article-swiper-wrapper">
<div class="swiper articleSwiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="article-item">
<img src="{{ test.image.path }}" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="article-desc">
<p>
{{ test.description }}
</p>
<div class="article_btn color-gr">
<a href="{{ 'test-start'|page({ id: test.id })}}">
{{'test.start_test'|_}}
</a>
</div>
</div>
</div>
</div>
<aside class="aside article-aside">
<h6 class="aside-ad-wrapper-title">
{{'test.see_also'|_}}
</h6>
<div class="aside-ad-wrapper">
<a href="#">
<img src="../assets/images/affiche.jpg" alt="" />
</a>
<p class="aside-ad-wrapper-txt">
В Минфине обсудили разработку стратегии АБР для Туркменистана с новым страновым
директором
</p>
</div>
<div class="aside-ad-wrapper">
<a href="#">
<img src="../assets/images/affiche.jpg" alt="" />
</a>
<p class="aside-ad-wrapper-txt">
В Минфине обсудили разработку стратегии АБР для Туркменистана с новым страновым
директором
</p>
</div>
</aside>
</div>
</div>
</div>
</main>
<!-- Test end ============================== -->