-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathblog.html
130 lines (127 loc) · 5.58 KB
/
blog.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en" class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<title>Portal Network | Blog</title>
<meta name="description" content="Portal Network Blog">
<meta name="author" content="Portal Network">
<meta name="keywords" content="Portal Network Blog" />
<meta property="og:title" content="Portal Network Blog" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Portal Network Blog" />
<meta property="og:url" content="https://www.portal.network/blog.html" />
<meta property="og:image" content="./assets/meta_share.png" />
<meta property="og:image:url" content="./assets/meta_share.png" />
<link rel="shortcut icon" type="image/x-icon" href="./assets/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.16/vue.js"></script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KKLX3T6');</script>
<!-- End Google Tag Manager -->
<style>
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KKLX3T6"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="blog" :class="{active: isMenuOpen}" v-cloak>
<div class="header">
<a class="menu_btn" @click="toggleMenuFn">
<span></span>
</a>
<div class="header_content">
<h1 class="logo">
<a href="./index.html"><img src="images/logo/logo_w.png" alt=""></a>
</h1>
<nav>
<ul class="menu">
<li>
<a @click="gaSeedPageView('document')" href="./document.html" target="_blank">Documentation</a>
</li>
<li>
<a @click="gaSeedPageView('showcase')" href="https://search.portal.network/" target="_blank">Showcase</a>
</li>
<li>
<a @click="gaSeedPageView('hackathon')" href="https://hackathon.portal.network/" target="_blank">Hackathon</a>
</li>
</ul>
</nav>
<div class="bar">
<ul>
<li>
<a href="https://www.portal.network/blog.html?tag=all" :class="{active: selectidx === 0}" @click="currentActive(0)">all</a>
</li>
<li>
<a href="https://www.portal.network/blog.html?tag=partnership" :class="{active: selectidx === 1}" @click="currentActive(1)">partnership</a>
</li>
<li>
<a href="https://www.portal.network/blog.html?tag=weekly" :class="{active: selectidx === 2}" @click="currentActive(2)">weekly</a>
</li>
<li>
<a href="https://www.portal.network/blog.html?tag=bns" :class="{active: selectidx === 3}" @click="currentActive(3)">bns</a>
</li>
<li>
<a href="https://www.portal.network/blog.html?tag=kaizen" :class="{active: selectidx === 4}" @click="currentActive(3)">kaizen</a>
</li>
<li>
<a href="https://www.portal.network/blog.html?tag=mumei" :class="{active: selectidx === 5}" @click="currentActive(3)">mumei</a>
</li>
<li>
<a href="https://www.portal.network/blog.html?tag=tutorial" :class="{active: selectidx === 6}" @click="currentActive(3)">tutorial</a>
</li>
</ul>
</div>
</div>
</div>
<div class="main">
<div class="blog_list">
<ul>
<li v-for="(item,idx) in blogList" :key="idx">
<a class="blog_box" :href="item.url">
<div class="figure" :style="getImgUrl(idx)"></div>
<div class="info">
<h4>{{item.title}}</h4>
<p>{{item.content}}</p>
</div>
<div class="author">
<div class="figure">
<img :src="item.authorImg" alt="">
</div>
<div class="author_content">
<p class="title">{{item.author}}</p>
<p>{{item.date}}</p>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="footer">
<ul>
<li><a href="./privacy_policy.html" target="_blank">Privacy & Policy</a></li>
<li><a href="./terms_coditions.html" target="_blank">Terms of use</a></li>
</ul>
<p class="copyRight">© 2018 PORTAL.NETWORK</p>
</div>
</div>
<script type="text/javascript" src="./js/vendor.js?f92db54f&f92db54f1d7daa2af217"></script><script type="text/javascript" src="./js/blog.js?f92db54f&f92db54f1d7daa2af217"></script></body>
</html>