forked from mitsuhashi/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events-en.html
executable file
·74 lines (71 loc) · 2.5 KB
/
events-en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
---
<!DOCTYPE html>
<!-- saved from url=(0030)http://dbcls.rois.ac.jp/member -->
<html lang="en" data-page-type="events">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width">
<title>Event | DBCLS</title>
<link rel="stylesheet" href="style/default.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<style type="text/css">
.pc-side-nav-fixed {
width: 18%;
position: fixed;
}
</style>
</head>
<body>
{% include header_en.html %}
<div class="content__wrapper">
<div id="subWrap">
<div class="sub__navigation sticky">
<h2 class="page-title">Events</h2>
<ul class="sub__navigation-wrapper outline-list-category__wrapper">
<li class="sub__navigation-title outline-list-category__title active">Events</li>
</ul>
</div>
</div>
<main id="main">
<div class="main__contents" id="main__contents">
<div id="main__contents-event">
<div class="main__content-title__wrapper">
<h3 class="main__content-title">Events</h3>
</div>
<div class="main__contents-event">
<ul class="news__individual-wrapper">
{% for post in site.categories.en limit:23 %} {% if post.tags contains 'events' %}
<li class='post__individual'>
<div class="post__date">
{{post.date | date: '%Y. %m. %d'}}
</div>
<div class="post__main post__main-top">
<a href="{{post.url | prepend: site.baseurl}}" class="post__title">{{post.title}}</a> {% assign
beginning = post.content | slice: 0, 300 | strip_html%}
<p class='post__desc-beginning'>{{beginning | slice: 0, 50}}…</p>
<div class="post__sub-info">
<div class="post-tags">
{% include post_meta.html %}
</div>
</div>
</div>
</li>
{% endif %} {% endfor %}
</ul>
<a href="news-en.html" class="more_btn page_btn jump_to_event">more</a>
</div>
</div>
<div id="main__contents-public">
<div class="section-wrapper">
</div>
</div>
</div>
</main>
</div>
{% include footer_en.html %}
<script src="script/default.js"></script>
<script src="script/events.js"></script>
</body>
</html>