Skip to content

Commit

Permalink
delete history
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Oct 8, 2024
0 parents commit be058b8
Show file tree
Hide file tree
Showing 702 changed files with 305,260 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
_site
.sass-cache
.jekyll-metadata
.jekyll-cache
Gemfile.lock
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
www.gen.dev
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gem 'jekyll'
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
To build and serve the site locally:
```
bundle exec jekyll serve
```
10 changes: 10 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
url: "" # the base hostname & protocol for your site, e.g. http://example.com
baseurl: "" # the subpath of your site, e.g. /blog
title: "Gen" # the name of your site, e.g. ACME Corp.

github_comments_repository: probcomp/gen-blog-comments

exclude:
- src
- examples
- test
12 changes: 12 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
- name: Home
link: /
- name: "Documentation"
link: /docs/
- name: "Tutorials"
link: /tutorials/
- name: "Source"
link: https://github.com/probcomp/Gen.jl
- name: "Ecosystem"
link: /ecosystem/
#- name: Blog
#link: /posts.html
25 changes: 25 additions & 0 deletions _includes/github-comments.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{% if page.github_comments_issueid and site.github_comments_repository %}

<div id="gh-comments">
<br/><br/>
<h3>Comments</h3>
<div id="gh-comments-list"></div>
</div>

<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>

<script src="{{ site.baseurl }}/js/github-comments.js"> </script>

<script type="text/javascript">
DoGithubComments (
"{{ site.github_comments_repository }}" ,
"{{ page.github_comments_issueid }}"
);
</script>

<noscript>Please enable JavaScript to view comments.</noscript>

{% endif %}
16 changes: 16 additions & 0 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

<header class="navbar navbar-expand navbar-dark flex-column flex-md-row bd-navbar">
<a class="navbar-brand mr-0 mr-md-2" href="/" aria-label="Gen">
<img src="assets/images/gen-logo.png" width="36" height="36">
</a>
<div class="navbar-nav-scroll">
<ul class="navbar-nav bd-navbar-nav flex-row">
{% for item in site.data.navigation %}
<li class="nav-item">
<a class="nav-link {% if page.url == item.link %}active{% endif %}" href="{{ item.link }}">{{ item.name }}</a>
</li>
{% endfor %}
</ul>
</div>

</header>
54 changes: 54 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/css/styles.css">

<!-- MathJax -->
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
},
svg: {
fontCache: 'global'
}
};
</script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>

<title>{{ page.title }}</title>
</head>
<body>
{% include navigation.html %}


<main role="main">
{{ content}}
</main><!-- /.container -->

<!-- Footer -->
<footer class="page-footer font-small blue pt-4">

<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright: The author(s).
</div>
<!-- Copyright -->

</footer>
<!-- Footer -->

<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<!--<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</body>
</html>
16 changes: 16 additions & 0 deletions _layouts/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: default
---

<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1 class="display-3">Gen</h1>
<p class="tagline">An open-source stack for generative modeling and probabilistic inference</p>
<!--<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more &raquo;</a></p>-->
</div>
</div>

<div class="container">
{{ content }}
</div>
17 changes: 17 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
layout: default
---

<br>
<div class="container">
<br/>
<h1>{{ page.title }}</h1>
<p><b>{{ page.author }}</b>- {{ page.date | date_to_string }}</p>

{{ content }}

<div>
{% include github-comments.html %}
</div>
<br>
</div>
8 changes: 8 additions & 0 deletions _layouts/splash.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
---

<br/>
<div class="container">
{{ content }}
</div>
Loading

0 comments on commit be058b8

Please sign in to comment.