-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.cshtml
35 lines (34 loc) · 1.41 KB
/
index.cshtml
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
Title: Home
NoSidebar: true
NoContainer: true
NoGutter: true
---
<div class="jumbotron">
<div class="container">
<h1>What is LitJSON?</h1>
<p>A .Net library to handle conversions from and to JSON (JavaScript Object Notation) strings.</p>
<p>LitJSON is written in C#, and it’s intended to be small, fast and easy to use.</p>
<p><i>It's quick and lean, without external dependencies.<br/>
Just a few classes, so easily embeddable in your own code, or a very small assembly to ship with your code.<br/>
The code is highly portable, which in general makes it easy to adapt for new platforms.</i>
</p>
<p>
<a class="btn btn-primary btn-lg" href="/docs/quickstart" role="button">Quickstart »</a>
</p>
</div>
</div>
<div class="container">
<div class="row">
<h2>Blog posts</h2>
<div class="col-xs-12 col-sm-6">
@foreach(IDocument doc in Documents[Docs.BlogPosts].Take(10))
{
<h3><a href="@Context.GetLink(doc)">@doc.WithoutSettings.String(DocsKeys.Title)</a> <br/>
<i class="fa fa-calendar"></i> Published: @(doc.Get<DateTime>(DocsKeys.Published).ToLongDateString(Context))</h3>
}
</div>
<div class="col-sm-6 hidden-xs">
<img style="width: 128px;height:128px" src="/assets/img/logo.png" alt=""/>
</div>
</div>
</div>