-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (97 loc) · 3.13 KB
/
index.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
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<title>Miyano | Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="og:type" content="blog" />
<meta property="og:title" content="Miyano | Home" />
<meta property="og:description" content="Welcome to Miyano, a blog system for Bear Notes" />
<link rel="stylesheet" href="/default.css" type="text/css">
</head>
<body>
<main>
<div class="nav-wrapper">
<nav>
<a href="/">Home</a><br>
<a href="/tag/miyano/">miyano</a><br>
<a href="/tag/blog/">blog</a><br>
<a href="/tag/tech/">tech</a><br>
<a href="/tag/ruby/">ruby</a><br>
<a href="/tag/tips/">tips</a><br>
<a href="/tag/github/">github</a><br>
</nav>
<div class="line"></div>
</div>
<div class="index-wrapper">
<div class="post">
<div class="title"><a href="/Welcome to Miyano/" >Welcome to Miyano</a></div>
<div class="date">Jul 21, 2018</div>
<div class="summary">
This is a little tool to use /bearnote/ as a blog.
If you have any quesion you can check the [wiki page](https://github.com/wuusn/miyano/wiki/) at the Github.
If you do not like this default layout...</div>
</div>
<div class="post">
<div class="title"><a href="/A Normal Post/" >A Normal Post</a></div>
<div class="date">Jul 21, 2018</div>
<div class="summary">
I like posting in the blog.
我喜歡博文。
/我喜欢博文。/
---
大标题
Heading 2
よろしく
Animal
Human
Men
Boys
Women
Girls
-Monkey-
Dogs
Cats
+ 20 starrs
- 100 Stars
1. ...</div>
</div>
<div class="post">
<div class="title"><a href="/Say something to the code/" >Say something to the code</a></div>
<div class="date">Jul 21, 2018</div>
<div class="summary">
index layout
The `index.html.erb` has a `site` instance. Here it is.
``` rb
module Miyano
class Site
def initialize
@posts = []
@tags = {}
end
def posts
@posts
...</div>
</div>
<div class="post">
<div class="title"><a href="/introduce_miyano/" >Introduce Miyano</a></div>
<div class="date">Jun 13, 2018</div>
<div class="summary">
Miyano 0.3
Requirements
1. macOS
2. [Bear](http://www.bear-writer.com)
3. [Ruby >= 2.5.0](https://gorails.com/setup/osx/10.13-high-sierra/ruby)
Quick Try
1. `$ gem install miyano`
2...</div>
</div>
</div>
</main>
<footer>
<div><a href="/">Home</a></div>
<div>© 2018 Your Name</div>
<div> by <a href="https://github.com/wuusn/miyano/">Miyano</a></div>
</footer>
</body>
</html>