-
Notifications
You must be signed in to change notification settings - Fork 0
/
organize.html
164 lines (139 loc) · 6.48 KB
/
organize.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html>
<head>
<title>Organize</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<!-- Bootstrap -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="/css/site.css" rel="stylesheet" media="screen">
<link href="/css/syntax.css" rel="stylesheet" media="screen">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">SBR1</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-left">
<li><a href="/start.html">Partnership SBR</a></li>
<li><a href="/stefaan.html">Stefaan</a></li>
<li><a href="/bert.html">Bert</a></li>
<li><a href="/throphies.html">Throphy room</a></li>
<li class="dropdown">
<a href="/show/" class="dropdown-toggle" data-toggle="dropdown">Show results <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/show/">Show results</a></li>
<li><a href="/show/2019.html">2019 show results</a></li>
<li><a href="/show/2018.html">2018 show results</a></li>
<li><a href="/show/2017.html">2017 show results</a></li>
<li><a href="/show/2016.html">2016 show results</a></li>
<li><a href="/show/2015.html">2015 show results</a></li>
</ul>
</li>
<li class="dropdown">
<a href="/gallery/" class="dropdown-toggle" data-toggle="dropdown">Gallery <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/gallery/2017/">2017</a></li>
<li><a href="/gallery/2016/">2016</a></li>
<li><a href="/gallery/2015/">2015</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-left" action="/search.html" role="search">
<div class="form-group">
<input type="text" required name="q" id="tipue_search_input" class="form-control" placeholder="Search">
</div>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="/seealso.html">See also</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<ol class="breadcrumb">
<li><a href="/">Home</a></li>
<li class="active">Organize</li>
</ol>
<div class="page-header">
<h1>Organize</h1>
</div>
<div class="row">
<div class="content">
<div class="col-md-7" role="main">
<ul class="pager">
</ul>
<main>
<h2 id="navbar">Navbar</h2>
<p>The navbar at the top is defined by the <code>content</code> variable of the top-level
<code>index.md</code> file. Its value is a list of reference ids of pages, folders and
external links.</p>
<p>The number of items at the right side of the navbar is defined by the
<code>navbar_right_items</code> variable. </p>
<h2 id="pages">Pages</h2>
<p>Each Markdown file with extension <code>.md</code> corresponds to a page on
the website. In the YAML frontmatter, you define the title and the
layout of a page. The default <code>page</code> layout has a sidebar.
If you don't need a sidebar, use the <code>simple_page</code> layout. </p>
<p>You can add a pager setting the <code>pager</code> variable to <code>true</code>.</p>
<h2 id="folders">Folders</h2>
<p>A folder is a collection of pages. It is implemented as a subdirectory with
content files.</p>
<p>The content of a folder is defined in its <code>index.md</code> file. One option is to
list the content explicitly. As an example, see <a href="/manual/" title="Manual demo">Manual demo</a>. Another option is to
specify the content ordering. For example, for a blog you would set the <code>order</code>
variable to <code>date</code>, and the <code>reverse</code> variable to <code>true</code>, as in <a href="/blog/" title="Blog demo">Blog demo</a>.</p>
<p>A link to a folder refers to its <code>index.html</code> page. In the navbar, you can
implement it as a dropdown menu instead, by setting the <code>dropdown</code> variable to
<code>true</code> in the <code>index.md</code> file. See the <code>demo</code> folder and the <code>Demo</code> menu item.</p>
<h2 id="external-links">External links</h2>
<p>You can define reference ids for external links in the <code>reflinks</code> variable in
<code>_site.yml</code>.</p>
</main>
<ul class="pager">
</ul>
</div>
</div>
<div class="col-md-3" role="complementary">
<nav class="hidden-print hidden-xs hidden-sm">
<div class="sidebar" data-spy="affix" data-offset-top="80" data-offset-bottom="60">
<div class="well">
<a href="#"><strong>Organize</strong></a>
<div class="toc">
<ul>
<li><a href="#navbar">Navbar</a></li>
<li><a href="#pages">Pages</a></li>
<li><a href="#folders">Folders</a></li>
<li><a href="#external-links">External links</a></li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</div>
<div class="footer">
<p>The partnership SBR website is powered by <a href="http://urubu.jandecaluwe.com/" target="_blank">Urubu</a> and <a href="https://github.com/" target="_blank">Github</a> pages</p>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<!-- <script src="https://code.jquery.com/jquery.js"></script> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>