-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontribution.html
249 lines (208 loc) · 9.25 KB
/
contribution.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="/img/favicon.ico" alt="neubias favicon">
<title>Neubias Blog</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="/assets/css/main.css" rel="stylesheet">
</head>
<body>
<header> <div class="blog-masthead header--interior ">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="/">
<img src="/img/icons.ico/NEUBIAS_square_color.svg" width="40" height="40" class="d-inline-block align-center" alt="Neubias logo">
NEUBIAS
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active dropdown">
<a class="nav-link dropdown-toggle" href="" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Categories
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="/category/news">
News (2)
</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
</div> </header>
<main class="container main">
<!-- <div class="jumbotron p-3 p-md-5 text-white rounded bg-dark">
<div class="col-md-6 px-0">
<h1 class="display-4 font-italic">Title of a longer featured blog post</h1>
<p class="lead my-3">Multiple lines of text that form the lede, informing new readers quickly and efficiently about what's most interesting in this post's contents.</p>
<p class="lead mb-0"><a href="#" class="text-white font-weight-bold">Continue reading...</a></p>
</div>
</div> -->
<div class="row">
<!-- Content -->
<div class="col-md-9 blog-main">
<div class="blog-post">
<div class="card flex-md-row mb-8 box-shadow">
<div class="container">
<div class="intro-text text-center">
<h1 class="post-title" itemprop="name headline"></h1>
</div>
<p>For all those who want to help:</p>
<ul>
<li>
<p>This blog will be built on Jekyll with automated integration via Travis-CI (unless better options appear)
With that strategy, developers and contributors will have independed access and should be straight forward for ANYONE to contribute with minimal effort. A tutorial will be presented.</p>
</li>
<li>
<p>For the developers, I will implement Dev routines with automatic build/deploy for making dev as painless as possible. I use Gulp in my personal projects and works great! <strong>You do NOT have to build the website locally. A push is sufficient to trigger the build.</strong></p>
</li>
<li>
<p>Templates for blog posts will be available.</p>
</li>
<li>
<p>Please wait before pushing contributions to this repository. Contact <a href="mailto:[email protected]">Victor Caldas</a></p>
</li>
<li>
<p>Suggestions and feedback are welcome.</p>
</li>
<li>
<p>Requests and bug report should be made via <a href="https://github.com/NeuBIAS/neubias.github.io/issues">Github Issues</a></p>
</li>
</ul>
<hr />
<h1 id="how-to-blog">How to blog</h1>
<ul>
<li>
<p>TUTORIAL UNDER DEVELOPMENT.</p>
<p>For now, you can send me the text and I will publish.</p>
</li>
<li>
<p>List of current categories.</p>
<ol>
<li>Tutorials</li>
<li>Algorithm</li>
<li>Papers</li>
</ol>
</li>
</ul>
<p>** Avoid creating unecessary categories! **</p>
<hr />
<h1 id="how-to-develop">How to Develop</h1>
<p>This instructions are based on Linux/OSX.</p>
<ol>
<li>Clone the repository:</li>
</ol>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ git clone https://github.com/NeuBIAS/neubias.github.io.git
</code></pre></div></div>
<p>You now should have a the folder ‘neubias.github.io’ available containing all the documents.</p>
<p>Navigate inside the folder and get the gulp packages that will be used:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ git checkout source
</code></pre></div></div>
<p>and then:</p>
<div class="highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ npm install
</code></pre></div></div>
<h4 id="gulp">Gulp</h4>
<p>The following Gulp pipelines are available:</p>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>gulp
</code></pre></div></div>
<p>Compile and launch the website</p>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>gulp clean
</code></pre></div></div>
<p>Remove clean all generated files, including the website. It runs before also when building to deploy.</p>
<div class="language-sh highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nv">$ </span>gulp
</code></pre></div></div>
</div>
</div>
</div>
</div>
<!-- /Content -->
<!-- /.blog-main -->
<aside class="col-md-3 blog-sidebar">
<div class="p-3 mb-3 bg-light rounded">
<h4 class="font-italic"><a href="contribution.html">
<center>How to contribute</center>
</a></h4>
<!-- <ol class="list-unstyled">
<li><a href="">GitHub</a></li>
<li><a href="">Twitter</a></li>
<li><a href="">Facebook</a></li>
</ol> -->
</div>
<div class="p-3 mb-3 bg-light rounded">
<h4 class="font-italic">About</h4>
<p class="mb-0">This is the NEUBIAS Blog! Keep tuned to read the news about image analysis and more! </p>
</div>
<!-- Recents post -->
<div class="p-3 mb-3 bg-light rounded">
<h4>Recent posts</h4>
<ul class="posts" span="recent">
<li>
<small>Oct 18, 18
<a href="/news/2018/10/18/welcome-neubias.html">
Welcome to NeuBIAS blog!</small></a>
</li>
<li>
<small>Oct 31, 17
<a href="/news/2017/10/31/two-training-stories-of-nebias.html">
Two success training stories of NEUBIAS</small></a>
</li>
</ul>
</div>
</aside>
<!-- /.blog-sidebar -->
</div>
<!-- /.row -->
</main>
<footer class="container footer-bs">
<div class="row">
<div class="container">
<div class="row">
<div class="col-sm clearfix">
<!--Facebook-->
<button type="button" class="btn btn-fb">
<a href="https://www.facebook.com/NEUBIAS/" style="color:inherit">
<i class="fa fa-facebook"></i></a>
</button>
<!--Twitter-->
<button type="button" class="btn btn-tw">
<a href="https://twitter.com/NEUBIAS_COST" style="color:inherit">
<i class="fa fa-twitter"></i></a>
</button>
<!--Linkedin-->
<button type="button" class="btn btn-li">
<a href="https://www.linkedin.com/groups/8614579" style="color:inherit">
<i class="fa fa-linkedin"></i></a>
</button>
<!--Github-->
<button type="button" class="btn btn-git">
<a href="https://github.com/NeuBIAS" style="color:inherit">
<i class="fa fa-github"></i></a>
</button>
</div>
<div class="col-sm">
<!-- Placeholder for content -->
</div>
<div class="col-sm">
NEUBIAS: Network of European BioImage Analysts. <br>
COST Action CA15124
</div>
</div>
</div>
</div>
</footer> <!-- Bootstrap core JavaScript
=================================================
Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>