forked from BulmaTemplates/bulma-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaside.html
More file actions
148 lines (143 loc) · 5.95 KB
/
Copy pathaside.html
File metadata and controls
148 lines (143 loc) · 5.95 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Aside - Free Bulma template</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bulma Version 0.9.0-->
<link rel="stylesheet" href="https://unpkg.com/bulma@0.9.0/css/bulma.min.css" />
<link rel="stylesheet" type="text/css" href="../css/aside.css">
</head>
<body>
<section class="hero is-info">
<div class="hero-body">
<div class="container">
<h1 class="title">
Primary title
</h1>
<h2 class="subtitle">
Primary subtitle
</h2>
</div>
</div>
</section>
<div class="columns">
<!-- Aside nav drawer -->
<aside class="column is-3 is-hidden-mobile">
<div class="panel">
<p class="panel-heading has-text-centered">Main Heading Goes Here</p>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-home"></i>
</span>
<span class="name">Dashboard</span>
</a>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-map-marker"></i>
</span>
<span class="name">Activity</span>
</a>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-th-list"></i>
</span>
<span class="name">Timeline</span>
</a>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="name">Folders</span>
</a>
<hr>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-comment-o"></i>
</span>
<span class="name">Comments</span>
</a>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-envelope-o"></i>
</span>
<span class="name">Mail</span>
</a>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-rss"></i>
</span>
<span class="name">RSS Feed</span>
</a>
<a class="panel-block">
<span class="panel-icon">
<i class="fa fa-database"></i>
</span>
<span class="name">Data</span>
</a>
</div>
</aside>
<section class="column">
<div class="tile is-ancestor">
<div class="tile is-vertical is-8">
<div class="tile">
<div class="tile is-parent is-vertical">
<article class="tile is-child notification is-primary">
<p class="title">Vertical...</p>
<p class="subtitle">Top tile</p>
</article>
<article class="tile is-child notification is-warning">
<p class="title">...tiles</p>
<p class="subtitle">Bottom tile</p>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child notification is-info">
<p class="title">Middle tile</p>
<p class="subtitle">With an image</p>
<figure class="image is-4by3">
<img src="https://bulma.io/images/placeholders/640x480.png">
</figure>
</article>
</div>
</div>
<div class="tile is-parent">
<article class="tile is-child notification is-danger">
<p class="title">Wide tile</p>
<p class="subtitle">Aligned with the right tile</p>
<div class="content">
<!-- Content -->
</div>
</article>
</div>
</div>
<div class="tile is-parent">
<article class="tile is-child notification is-success">
<div class="content">
<p class="title">Tall tile</p>
<p class="subtitle">With even more content</p>
<div class="content">
<!-- Content -->
</div>
</div>
</article>
</div>
</div>
</section>
</div>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<strong>Bulma</strong> by
<a href="http://jgthms.com">Jeremy Thomas</a>. The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content is licensed
<a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
</p>
</div>
</div>
</footer>
</body>
</html>