forked from mirror/ledisdb
v0.2 released
This commit is contained in:
parent
94b6f46971
commit
8f8a39e8a4
|
@ -175,3 +175,10 @@ p {
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post p{
|
||||||
|
font-size: medium;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.small.text-muted {
|
||||||
|
font-size: small;
|
||||||
|
}
|
|
@ -41,11 +41,18 @@
|
||||||
<div class="row news" id="news">
|
<div class="row news" id="news">
|
||||||
<h2>News</h2>
|
<h2>News</h2>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
<div class="post">
|
||||||
|
<h3> <a href="#ledisdb-v0.2-released">LedisDB v0.2 Released</a></h3>
|
||||||
|
<p>We have released LedisDB v0.2, Check <a href="https://github.com/siddontang/ledisdb/releases/tag/v0.2">GitHub</a> for more information</p>
|
||||||
|
<p class="small text-muted">Published 5 August 2014</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="post">
|
<div class="post">
|
||||||
<h3><a href="#ledisdb-v0.1-released">LedisDB v0.1 Released</a></h3>
|
<h3><a href="#ledisdb-v0.1-released">LedisDB v0.1 Released</a></h3>
|
||||||
<p>Today we are happy to announce the release of LedisDB <a href="https://github.com/siddontang/ledisdb/releases/tag/v0.1">v0.1</a>.</p>
|
<p>Today we are happy to announce the release of LedisDB <a href="https://github.com/siddontang/ledisdb/releases/tag/v0.1">v0.1</a>.</p>
|
||||||
<p class="small text-muted">Published 24 July 2014</p>
|
<p class="small text-muted">Published 24 July 2014</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -80,7 +87,7 @@
|
||||||
<script src="js/jquery-1.11.1.min.js"></script>
|
<script src="js/jquery-1.11.1.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
$('.post a').click(function() {
|
$('.post a').click(function() {
|
||||||
$('html,body').animate({scrollTop: $(this).offset().top}, 1);
|
$('html,body').animate({scrollTop: $(this).offset().top}, 0);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue