ORIENT/themes/modern2/pages/test.htm

98 lines
3.5 KiB
HTML
Raw Permalink Normal View History

2023-04-18 04:08:59 +00:00
title = "Test"
url = "/test/:id"
layout = "new/master-inside"
2023-04-17 06:48:25 +00:00
is_hidden = 0
robot_index = "index"
robot_follow = "follow"
==
2023-04-18 04:08:59 +00:00
<?php
function onStart(){
$this['test'] = Tps\Tps\Models\Test::where('id', $this->param('id'))->get()->first();
2024-05-14 10:05:45 +00:00
$this['otherTest'] = Tps\Tps\Models\Test::where('id', '!=', $this->param('id'))->with('image')->get();
2023-04-18 04:08:59 +00:00
}
?>
==
2024-05-14 10:05:45 +00:00
{% put styles %}
<style>
.aside-ad-wrapper-txt {
font-weight: bold !important;
font-size: 18px !important;
line-height: 1.4;
margin-top: 10px;
}
</style>
{% endput %}
2023-04-18 04:08:59 +00:00
2024-05-14 10:05:45 +00:00
<!-- Test ================================== -->
2023-04-18 04:08:59 +00:00
<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>
2024-05-14 10:05:45 +00:00
{% for test in otherTest %}
2023-04-18 04:08:59 +00:00
<div class="aside-ad-wrapper">
2024-05-14 10:05:45 +00:00
<a href="{{'test'|page({id: test.id})}}">
<img src="{{test.image.path}}" alt="" />
2023-04-18 04:08:59 +00:00
</a>
<p class="aside-ad-wrapper-txt">
2024-05-14 10:05:45 +00:00
{{test.title}}
2023-04-18 04:08:59 +00:00
</p>
</div>
2024-05-14 10:05:45 +00:00
{% endfor %}
2023-04-18 04:08:59 +00:00
</aside>
2024-05-14 10:05:45 +00:00
2023-04-18 04:08:59 +00:00
</div>
</div>
</div>
</main>
<!-- Test end ============================== -->