You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
195 lines
7.8 KiB
195 lines
7.8 KiB
<!DOCTYPE html>
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
<meta http-equiv="Cache-Control" content="max-age=86400">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
|
|
|
|
<title>{{.Title}}</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="referrer" content="unsafe-url">
|
|
<meta name="keywords" content="{{.Keywords}}">
|
|
<meta name="description" content="{{.Description}}">
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/bootstrap.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/swiper.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/simple-line-icons.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/common.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/style.css@2022.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/responsive.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/aos.css"}}">
|
|
<link rel="stylesheet" type="text/css" href="{{staticFile "/css/newstem.css"}}">
|
|
|
|
<link rel="stylesheet" href="{{staticFile "/css/css1.css"}}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<header>
|
|
|
|
|
|
|
|
|
|
<div class="header_bottom_area">
|
|
<div class="container-fluid">
|
|
<div class="header_bottom">
|
|
<img src="{{replaceImage .Logo}}" alt="logo" />
|
|
|
|
<nav class="gnb">
|
|
<ul style="padding: 0 100px;">
|
|
|
|
<li class="hover_box" data-height="380">
|
|
<a style="color: #000;" href="{{.IndexUrl}}">{{ lang "home"}}</a>
|
|
</li>
|
|
<li class="hover_box" data-height="380">
|
|
<a style="color: #000;" href="{{.AboutUrl}}">{{ lang "about" }}</a>
|
|
</li>
|
|
<li class="hover_box" data-height="380">
|
|
<a style="color: #000;" href="{{.ContactUrl}}">{{ lang "contact" }}</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="mobile_header_container">
|
|
<div class="mobile_header" style="border: 0;height: 60px;">
|
|
<img src="{{replaceImage .Logo}}" alt="logo" style="height: 60px;"/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<section class="contents_area" style="padding-top: 80px;">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-xl-10 ml-auto mr-auto">
|
|
<div class="table_area">
|
|
<div class="table_list_thumb">
|
|
<ul>
|
|
{{ range .Articles }}
|
|
|
|
<li class="hover">
|
|
<div class="row">
|
|
<div class="col-12 col-xl-4">
|
|
<a href="{{.Url}}"><img style=" width: 100%;
|
|
height: 100%;" src="{{getCover .Cover}}" alt="Cover Image" /></a>
|
|
|
|
</div>
|
|
<div class="col-12 col-xl-8" style="display: flex;align-items: center;">
|
|
<div class="table_list_desc_area">
|
|
<div class="table_list_desc_title">
|
|
<h6>
|
|
<a href="{{.Url}}" style=" text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
-webkit-line-clamp: 1;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;">{{.Title}}</a> </h6>
|
|
<div class="table_list_desc_btn" style="max:130px ;">
|
|
<span class="date"> <a href="{{.Url}}">{{timeFormat .PublishTime}}</a></span>
|
|
</div>
|
|
</div>
|
|
<p>
|
|
<a href="{{.Url}}" style="text-decoration: none; text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
-webkit-line-clamp: 4;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;">{{.Summary}}</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{{end}}
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="pagination">
|
|
<div>
|
|
{{$pulen := len .PrevUrl}}
|
|
{{ if ne $pulen 0 }}
|
|
<div style="float:left;">
|
|
<a href="{{.PrevUrl}}">{{lang "prev"}}</a>
|
|
</div>
|
|
{{ end }}
|
|
{{$nulen := len .NextUrl}}
|
|
{{ if ne $nulen 0 }}
|
|
<div style="float:right;">
|
|
<a href="{{.NextUrl}}">{{lang "next"}}</a>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<div class="black_wrapper"></div>
|
|
|
|
|
|
|
|
<footer>
|
|
<div class="footer_container">
|
|
<div class="footer_left">
|
|
<div class="footer_sitemap_area " style="justify-content: space-evenly;">
|
|
<ul>
|
|
<h6>{{lang "related"}}</h6>
|
|
<li>
|
|
<a href="{{.AboutUrl}}">{{lang "about"}}</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{.ContactUrl}}">{{lang "contact"}}</a>
|
|
</li>
|
|
<li>
|
|
<a href="{{.PolicyUrl}}">{{lang "policy"}}</a>
|
|
</li>
|
|
</ul>
|
|
|
|
{{$flen := len .Friendship}}
|
|
{{if ne $flen 0}}
|
|
<ul>
|
|
<h6>{{lang "friendship"}}</h6>
|
|
{{range .Friendship}}
|
|
<li>
|
|
<a href="{{.Url}}">{{.Name}}</a>
|
|
</li>
|
|
{{end}}
|
|
|
|
|
|
|
|
</ul>
|
|
{{end}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="footer_copy_area" style="color: #fff;">
|
|
{{.Copyright}}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</footer>
|
|
<link rel="stylesheet" href={{staticFile "/css/indexs.css"}}">
|
|
|
|
</body>
|
|
</html>
|
|
|