-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
89 lines (86 loc) · 5.32 KB
/
index.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
---
layout: home
title: home
---
<div class="jumbotron">
<div class="container">
<img src="/images/logo-black-notext.png" style="float:left"/>
<div>
<h1 class="logo-black">Brightstar<span class="logo-highlight">DB</span></h1>
<p>A native <strong>RDF</strong> database for the <strong>.NET platform</strong>.</p>
<div class="btn-group btn-group-justified hidden-xs">
<a class="btn btn-warning btn-lg" role="button" href="https://github.com/BrightstarDB/BrightstarDB" title="Our source code is all on GitHub..."><span class="glyphicon glyphicon-bookmark"></span> Source Code</a>
<a class="btn btn-warning btn-lg" role="button" href="https://github.com/BrightstarDB/BrightstarDB/releases" title="...or you can grab pre-build Windows binaries..."><span class="glyphicon glyphicon-download-alt"></span> Binaries</a>
<a class="btn btn-warning btn-lg" role="button" href="http://brightstardb.readthedocs.org/"
title="...or head over to ReadTheDocs to RTFM!"><span class="glyphicon glyphicon-book"></span> Documentation</a>
</div>
<div class="btn-group btn-group-vertical hidden-md hidden-sm hidden-lg">
<a class="btn btn-warning btn-lg" role="button" href="https://github.com/BrightstarDB/BrightstarDB" title="Our source code is all on GitHub..."><span class="glyphicon glyphicon-bookmark"></span> Source Code</a>
<a class="btn btn-warning btn-lg" role="button" href="https://github.com/BrightstarDB/BrightstarDB/releases" title="...or you can grab pre-build Windows binaries..."><span class="glyphicon glyphicon-download-alt"></span> Binaries</a>
<a class="btn btn-warning btn-lg" role="button" href="http://brightstardb.readthedocs.org/"
title="...or head over to ReadTheDocs to RTFM!"><span class="glyphicon glyphicon-book"></span> Documentation</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Cross Platform</h2>
<p>BrightstarDB runs on Windows, Linux, OSX, Windows Phone, Android and iOS, with a single consistent
data file format across all platforms. The core libraries have a small footprint and install with
zero configuration for embedded applications.</p>
</div>
<div class="col-md-4">
<h2>Server or Embedded</h2>
<p>Run BrightstarDB embedded inside your own application or connect to a BrightstarDB server using
either the RESTful HTTP API or the strongly-typed .NET client API. </p>
</div>
<div class="col-md-4">
<h2>RDF Flexibility</h2>
<p>BrightstarDB is an <a href="http://en.wikipedia.org/wiki/Triplestore">RDF triplestore</a>.
It does not require the definition of a database schema, and with
the RDF data model model you can easily add and integrate data of all shapes. We also implement the standard
<a href="http://www.w3.org/TR/sparql11-overview/">SPARQL</a> query language, update language and protocol
so you can use off-the-shelf client tools to connect to your data stores.
</div>
<div class="col-md-4">
<h2>LINQ Simplicity</h2>
<p>BrightstarDB provides an ORM for RDF. A custom LINQ provider maps queries against your application domain model
into SPARQL queries. This provides full CRUD and query capability for strongly-typed .NET applications.</p>
</div>
<div class="col-md-4">
<h2>Our Store or Yours</h2>
<p>The ORM for RDF, LINQ to SPARQL and the .NET dynamic objects API all support connecting to any SPARQL endpoint
that implements SPARQL 1.1 standards. So you can choose to store your triples in BrightstarDB or any other
compliant triplestore and still make use of our advanced, developer-friendly APIs.</p>
</div>
<div class="col-md-4">
<h2>Open Source</h2>
<p>BrightstarDB is developed in the open on <a href="https://github.com/BrightstarDB/BrightstarDB">GitHub</a>.
Our code is licensed under the permissive <a href="http://opensource.org/licenses/MIT">MIT license</a>,
allowing you to use BrightstarDB in commercial and non-commercial applications alike. Community support
is available from our <a href="https://github.com/BrightstarDB/BrightstarDB/issues">GitHub issue tracker</a>. Commercial support
is also available from <a href="http://www.networkedplanet.com/contact/">NetworkedPlanet</a>.</p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row from-blog">
<div class="container">
<div class="row">
<h1 class="logo-black">From the <a href="/blog">Blog</a></h1>
</div>
<div class="row">
{% for post in site.posts limit:3 %}
<div class="col-md-4">
<h2><a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<p><span class="small">{{ post.date | date_to_long_string }}</span></p>
{{ post.excerpt }}
<p class="text-right"><a href="{{ post.url }}" title="{{ post.title }}">Read More...</a></p>
</div>
{% endfor %}
</div>
</div>
</div>
</div>