-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
203 changed files
with
975 additions
and
11,329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-metadata | ||
Gemfile.lock | ||
|
||
vendor | ||
bin | ||
__site/ | ||
.DS_Store | ||
franklin | ||
franklin.pub | ||
node_modules/ | ||
Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[deps] | ||
Franklin = "713c75ef-9fc9-4b05-94a9-213340da978e" | ||
NodeJS = "2bd173c7-0d6d-553b-b6af-13a54713934c" |
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i"); | ||
|
||
.octicon { | ||
display: inline-block; | ||
vertical-align: text-bottom; | ||
fill: currentColor | ||
} | ||
|
||
body { | ||
background: #143c3c; | ||
font-family: Lato, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; | ||
line-height: 1.7 | ||
} | ||
|
||
.logo { | ||
font-style: italic | ||
} | ||
|
||
.navbar .logo { | ||
text-shadow: 2px 2px 5px rgba(0,0,0,0.1) | ||
} | ||
|
||
.content { | ||
background: #f0fafa | ||
} | ||
|
||
.content .container { | ||
background: white; | ||
padding-top: 2em; | ||
padding-bottom: 2em | ||
} | ||
|
||
.content h1 { | ||
font-size: 20pt; | ||
padding-bottom: 0.2em; | ||
border-bottom: 3px solid #ebf5eb; | ||
text-align: center; | ||
font-weight: bold; | ||
margin-bottom: 1em | ||
} | ||
|
||
.content h2 { | ||
font-size: 18pt; | ||
text-align: right; | ||
margin-top: 2em | ||
} | ||
|
||
.content h3 { | ||
font-size: 12pt; | ||
font-weight: bold | ||
} | ||
|
||
.content blockquote { | ||
font-style: italic; | ||
border-left: 5px solid #ebf5eb; | ||
padding-left: 1em; | ||
margin-left: 1em | ||
} | ||
|
||
.content .author { | ||
text-align: right; | ||
font-style: italic; | ||
color: #009696 | ||
} | ||
|
||
.content .attrib { | ||
font-style: italic; | ||
color: #003232 | ||
} | ||
|
||
.lighter { | ||
font-weight: 300; | ||
letter-spacing: 1px | ||
} | ||
|
||
p a:hover, p a:visited:hover { | ||
color: #006464; | ||
text-decoration: none | ||
} | ||
|
||
p a, p a:visited { | ||
color: #006464; | ||
border-bottom: 2px solid #b4dcdc | ||
} | ||
|
||
p a:hover { | ||
border-bottom: 2px solid #0aa | ||
} | ||
|
||
.feature a:hover, .feature a:visited:hover { | ||
color: #006464; | ||
text-decoration: none | ||
} | ||
|
||
.feature a, .feature a:visited { | ||
color: #006464; | ||
border-bottom: 2px solid #b4dcdc | ||
} | ||
|
||
.feature a:hover { | ||
border-bottom: 2px solid #0aa | ||
} | ||
|
||
.call { | ||
padding-top: 2em; | ||
padding-bottom: 2em; | ||
text-align: center | ||
} | ||
|
||
.call p:last-child { | ||
margin: 0 | ||
} | ||
|
||
.footer { | ||
margin-top: 1.5rem; | ||
margin-bottom: 3rem; | ||
color: white | ||
} | ||
|
||
pre { | ||
margin: 0 | ||
} | ||
|
||
pre code.hljs { | ||
background: #f5ffff; | ||
border: 2px solid #c8f0f0; | ||
border-radius: 5px; | ||
padding-left: 1em; | ||
padding-right: 1em | ||
} | ||
|
||
.navbar-collapse.collapse.in { | ||
display: block !important | ||
} | ||
|
||
.jumbotron { | ||
margin-bottom: 0; | ||
position: relative; | ||
border-bottom: 1px thick; | ||
} | ||
|
||
.jumbotron .container { | ||
max-width: 750px; | ||
box-shadow: 2px; | ||
position: relative; | ||
padding: none; | ||
text-align: center; | ||
} | ||
|
||
.jumbotron .buttons { | ||
padding: 10px; | ||
} | ||
|
||
@media (min-width: 576px){ | ||
.jumbotron .container{ | ||
padding: calc(1rem + 30px) 15px; | ||
} | ||
} | ||
|
||
.jumbotron hr { | ||
border-top: 1px solid rgb(100, 150, 150); | ||
} | ||
|
||
.jumbotron h1 { | ||
font-family: lato; | ||
font-style: italic; | ||
} | ||
|
||
/* Description */ | ||
.jumbotron { | ||
padding: 0; | ||
} | ||
|
||
.jumbotron p { | ||
font-size: 1.1em; | ||
margin-bottom: 1.5rem; | ||
} | ||
|
||
.btn-primary { | ||
color: rgb(30, 50, 50); | ||
border-color: rgb(150, 200, 200); | ||
background: none; | ||
border-width: 2px; | ||
} | ||
|
||
.jumbotron .btn-primary:hover { | ||
color: rgb(0, 0, 0); | ||
border-color: rgb(30, 80, 80); | ||
background: none; | ||
border-width: 2px; | ||
} | ||
|
||
/*Features*/ | ||
.features { | ||
background:white; | ||
padding-top:2em; | ||
} | ||
|
||
.feature { | ||
padding-top: 1em; | ||
padding-bottom: 2rem; | ||
letter-spacing: 0.1px; | ||
} | ||
|
||
.feature-title { | ||
text-align:center; | ||
color:rgb(100,130,130) | ||
} | ||
|
||
.paper { | ||
padding: 1em; | ||
} | ||
|
||
.feature h5, .paper h5 { | ||
font-style: italic; | ||
padding-bottom: 0.5em; | ||
} | ||
|
||
.friends{ | ||
background: #fff; | ||
} | ||
.friends *{ | ||
text-align: center; | ||
padding:10px; | ||
} | ||
.friends h3{ | ||
margin-top: 50px; | ||
} | ||
.friends ul{ | ||
display: flex; | ||
-webkit-justify-content: space-evenly; | ||
justify-content: space-evenly; | ||
flex-wrap: wrap; | ||
list-style: none; | ||
align-items: center; | ||
} | ||
.friends ul li img{ | ||
max-width: 200px; | ||
max-height: 100px; | ||
height: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!-- CONTENT ENDS HERE --> | ||
|
||
<!-- Footer --> | ||
<div class="container footer lighter"> | ||
<p>{{website_footer}}</p> | ||
<a href="{{website_twitter_url}}" class="twitter-follow-button" data-show-count="false">{{website_twitter}}</a> | ||
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
</div> | ||
|
||
<!-- Scripts --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | ||
<script src="/libs/highlight.pack.js"></script> | ||
<script>hljs.initHighlightingOnLoad();</script> | ||
<!-- instant.page --> | ||
<script src="//instant.page/1.0.0" type="module" integrity="sha384-6w2SekMzCkuMQ9sEbq0cLviD/yR2HfA/+ekmKiBnFlsoSvb/VmQFSi/umVShadQI"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- corresponds to the old assets/css/style.css --> | ||
<style> | ||
#cppn{ | ||
position:absolute; | ||
top:0; | ||
bottom:0; | ||
height: 100%; | ||
width: 100vw; | ||
} | ||
|
||
iframe { | ||
display: block; | ||
border-style:none; | ||
} | ||
</style> | ||
|
||
<!-- Social media previews --> | ||
<meta property="og:title" content="{{website_title}}"> | ||
<meta property="og:description" content="{{website_descr}}"> | ||
<meta property="og:image" content="{{website_img}}"> | ||
<meta property="og:url" content="{{website_url}}"> | ||
|
||
<meta name="twitter:title" content="{{website_title}}"> | ||
<meta name="twitter:description" content="{{website_descr}}"> | ||
<meta name="twitter:image" content="{{website_img}}"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
|
||
<!-- Favicon details --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon_io/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon_io/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon_io/favicon-16x16.png"> | ||
<link rel="manifest" href="assets/favicon_io/site.webmanifest"> | ||
|
||
<!-- Global Site Tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-36890222-9"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'UA-36890222-9'); | ||
</script> | ||
|
||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<!-- Bootstrap CSS (4.1) --> | ||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="/css/script_default.css"> | ||
<link rel="stylesheet" href="/css/site.css"> | ||
|
||
<!-- Font Awesome --> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"> | ||
|
||
<!-- KaTeX --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-9eLZqc9ds8eNjO3TmqPeYcDj8n+Qfa4nuSiGYa6DjLNcv9BtN69ZIulL9+8CqC9Y" crossorigin="anonymous"> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-K3vbOmF2BtaVai+Qk37uypf7VrgBubhQreNQe9aGsz9lB63dIFiQVlJbr92dw2Lx" crossorigin="anonymous"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" integrity="sha384-kmZOZB5ObwgQnS/DuDg6TScgOiWWBiVt0plIRkZCmE6rDZGrEOQeHM5PcHi+nyqe" crossorigin="anonymous" | ||
onload="renderMathInElement(document.body, { | ||
delimiters: [ | ||
{left: '$[[', right: ']]', display: true}, | ||
{left: '\\[', right: '\\]', display: true}, | ||
{left: '[[', right: ']]', display: false} | ||
] | ||
});"></script> | ||
|
||
<title>Flux – Elegant ML</title> | ||
</head> | ||
<body> | ||
|
||
{{insert navbar.html}} | ||
|
||
<!-- Content appended here --> |
Oops, something went wrong.