Skip to content

Commit

Permalink
Rebuilt site
Browse files Browse the repository at this point in the history
  • Loading branch information
David Evans committed Mar 13, 2016
1 parent cd3ee83 commit 6a50733
Show file tree
Hide file tree
Showing 74 changed files with 3,599 additions and 78 deletions.
60 changes: 60 additions & 0 deletions web/#index.html#
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{{ partial "header.html" . }}
<body>
<div id="layout" class="pure-g">
{{ partial "sidebar.html" . }}

<div class="content pure-u-1 pure-u-md-3-4">
<a name="top"></a>
{{ partial "listtop.html" . }}

<div class="posts">
THERE ARE NO POSTS
{{ $Site := .Site }}
{{ range .Site.Pages }}
<section class="post">
<header class="post-header">
{{ if .Params.thumbnail }}
<div class="post-avatar-wrapper">
<img class="post-avatar" alt="" src="{{ .Params.thumbnail }}">
</div>
{{ end }}
<h1 class="post-title">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
</header>
<p class="post-meta">
{{ if not .Params.nodate }}
<span class="post-date">
<span class="post-date-day"><sup>{{ .Date.Format "2" }}</sup></span><span class="post-date-separator">/</span><span class="post-date-month">{{ .Date.Format "Jan" }}</span> <span class="post-date-year">{{ .Date.Format "2006" }}</span>
</span>
{{ end }}
{{ if not .Params.noauthor }}
{{ if .Params.author }}By <a class="post-author" {{ if .Params.authorlink }}href="{{ .Params.authorlink }}"{{ end }}>{{ .Params.author }}</a>{{ end }}
{{ end }}
{{ if not .Params.noread }}
<span class="post-reading-time"><i class="fa fa-clock-o"></i> <em>{{.ReadingTime}} min. read</em></span>
{{ end }}
{{ if .Params.categories }}
<div class="post-categories">
{{ range .Params.categories }}
<a class="post-category post-category-{{ . | urlize }}" href="{{ $Site.BaseURL }}/categories/{{ . | urlize }}">{{ . }}</a>
{{ end }}
</div>
{{ end }}
</p>
<article class="post-summary">
{{ .Summary }}
</article>
<div class="read-more-link">
<a href="{{ .RelPermalink }}"><span class="read-more-slashes">//</span>Read More...</a>
</div>
</section>
{{ end }}
</div>

{{ partial "footer.html" . }}
</div>
</div>
{{ partial "bodyend.html" . }}
</body>
</html>
1 change: 1 addition & 0 deletions web/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ develop:
hugo server --theme=$(THEME) --watch

github: html
cp CNAME public/CNAME
git add -A
git commit -m "Rebuilt site"
git push origin master
Expand Down
2 changes: 2 additions & 0 deletions web/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# ScriptInspector
Website for ScriptInspector.org
15 changes: 15 additions & 0 deletions web/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
baseurl = "http://oblivc.org"
languageCode = "en-us"
title = "Obliv-C"
subtitle = "A Language for Extensible Data-Oblivious Computation"

[params]
sidebartitle = "Obliv-C"
sidebartagline = "A Language for Extensible Data-Oblivious Computation"
nodate = true
noauthor = true
noread = true
nopaging=true
notoc=true

[[menu.footer]]
1 change: 1 addition & 0 deletions web/content/.#main.md
26 changes: 26 additions & 0 deletions web/content/main.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
+++
title = "Obliv-C: A Language for Extensible Data-Oblivious Computation"
+++

### Obliv-C: A Language for Extensible Data-Oblivious Computation

Obliv-C is a simple GCC wrapper that makes it easy to embed secure
computation protocols inside regular C programs. The idea is simple: if
you are performing a multi-party distributed computation with sensitive
data, just write it in our Obliv-C langauge and compile/link it with
your project. The result will be a secure multi-party cryptographic
protocol that performs this operation without revealing any of the
inputs or intermediate values of the computation to any of the
parties. Only the outputs are finally shared.

### Paper

### Tutorial

### Projects Using Obliv-C






Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/evadeemail.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/googlemail.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/images.pptx
Binary file not shown.
Binary file added web/images/method.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/images/threshold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 0 additions & 78 deletions web/index.html

This file was deleted.

60 changes: 60 additions & 0 deletions web/layouts/#index.html#
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{{ partial "header.html" . }}
<body>
<div id="layout" class="pure-g">
{{ partial "sidebar.html" . }}

<div class="content pure-u-1 pure-u-md-3-4">
<a name="top"></a>
{{ partial "listtop.html" . }}

<div class="posts">
THERE ARE NO POSTS
{{ $Site := .Site }}
{{ range .Site.Pages }}
<section class="post">
<header class="post-header">
{{ if .Params.thumbnail }}
<div class="post-avatar-wrapper">
<img class="post-avatar" alt="" src="{{ .Params.thumbnail }}">
</div>
{{ end }}
<h1 class="post-title">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
</header>
<p class="post-meta">
{{ if not .Params.nodate }}
<span class="post-date">
<span class="post-date-day"><sup>{{ .Date.Format "2" }}</sup></span><span class="post-date-separator">/</span><span class="post-date-month">{{ .Date.Format "Jan" }}</span> <span class="post-date-year">{{ .Date.Format "2006" }}</span>
</span>
{{ end }}
{{ if not .Params.noauthor }}
{{ if .Params.author }}By <a class="post-author" {{ if .Params.authorlink }}href="{{ .Params.authorlink }}"{{ end }}>{{ .Params.author }}</a>{{ end }}
{{ end }}
{{ if not .Params.noread }}
<span class="post-reading-time"><i class="fa fa-clock-o"></i> <em>{{.ReadingTime}} min. read</em></span>
{{ end }}
{{ if .Params.categories }}
<div class="post-categories">
{{ range .Params.categories }}
<a class="post-category post-category-{{ . | urlize }}" href="{{ $Site.BaseURL }}/categories/{{ . | urlize }}">{{ . }}</a>
{{ end }}
</div>
{{ end }}
</p>
<article class="post-summary">
{{ .Summary }}
</article>
<div class="read-more-link">
<a href="{{ .RelPermalink }}"><span class="read-more-slashes">//</span>Read More...</a>
</div>
</section>
{{ end }}
</div>

{{ partial "footer.html" . }}
</div>
</div>
{{ partial "bodyend.html" . }}
</body>
</html>
24 changes: 24 additions & 0 deletions web/layouts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{{ partial "header.html" . }}
<body>
<div id="layout" class="pure-g">
{{ partial "sidebar.html" . }}

<div class="content pure-u-1 pure-u-md-3-4">
<a name="top"></a>
{{ partial "listtop.html" . }}


<section id="main">
<div>
{{ range first 1 .Site.Pages }}
{{ .Content }}
{{ end }}
</div>
</section>

{{ partial "footer.html" . }}
</div>
</div>
{{ partial "bodyend.html" . }}
</body>
</html>
1 change: 1 addition & 0 deletions web/layouts/shortcodes/pdflink.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[<a href="{{ .Site.BaseURL }}/docs/{{ index .Params 0 }}">PDF</a>]
Empty file added web/public/404.html
Empty file.
1 change: 1 addition & 0 deletions web/public/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
oblivc.org
Loading

0 comments on commit 6a50733

Please sign in to comment.