Skip to content

Commit 1c16dee

Browse files
committed
Hastily refactor to work with modern Jekyll, clean up image naming and references, remove some broken links
1 parent ae30a0c commit 1c16dee

File tree

133 files changed

+1630
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+1630
-176
lines changed

404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

Gemfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
gem "jekyll", "~> 4.3.2"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
# gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
20+
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
platforms :mingw, :x64_mingw, :mswin, :jruby do
24+
gem "tzinfo", ">= 1", "< 3"
25+
gem "tzinfo-data"
26+
end
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
30+
31+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
32+
# do not have a Java counterpart.
33+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

Gemfile.lock

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.5)
5+
public_suffix (>= 2.0.2, < 6.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.2.3)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.3.0.dev.1)
12+
ffi (1.16.3)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (1.14.1)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.3.2)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (>= 2.0, < 4.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3, >= 2.3.1)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (>= 4.0, < 6)
27+
mercenary (>= 0.3.6, < 0.5)
28+
pathutil (~> 0.9)
29+
rouge (>= 3.0, < 5.0)
30+
terminal-table (>= 1.8, < 4.0)
31+
webrick (~> 1.7)
32+
jekyll-feed (0.17.0)
33+
jekyll (>= 3.7, < 5.0)
34+
jekyll-sass-converter (2.2.0)
35+
sassc (> 2.0.1, < 3.0)
36+
jekyll-seo-tag (2.8.0)
37+
jekyll (>= 3.8, < 5.0)
38+
jekyll-watch (2.2.1)
39+
listen (~> 3.0)
40+
kramdown (2.4.0)
41+
rexml
42+
kramdown-parser-gfm (1.1.0)
43+
kramdown (~> 2.0)
44+
liquid (5.4.0)
45+
listen (3.9.0)
46+
rb-inotify (~> 0.9, >= 0.9.10)
47+
mercenary (0.4.0)
48+
minima (2.5.1)
49+
jekyll (>= 3.5, < 5.0)
50+
jekyll-feed (~> 0.9)
51+
jekyll-seo-tag (~> 2.1)
52+
pathutil (0.16.1)
53+
forwardable-extended (~> 2.6)
54+
public_suffix (4.0.6)
55+
rb-inotify (0.10.1)
56+
ffi (~> 1.0)
57+
rexml (3.2.5)
58+
rouge (4.2.0)
59+
sassc (2.4.0)
60+
ffi (~> 1.9)
61+
terminal-table (3.0.2)
62+
unicode-display_width (>= 1.1.1, < 3)
63+
unicode-display_width (1.6.1)
64+
webrick (1.8.1)
65+
66+
PLATFORMS
67+
x86_64-linux-gnu
68+
69+
DEPENDENCIES
70+
http_parser.rb (~> 0.6.0)
71+
jekyll (~> 4.3.2)
72+
jekyll-feed (~> 0.12)
73+
minima (~> 2.5)
74+
tzinfo (>= 1, < 3)
75+
tzinfo-data
76+
wdm (~> 0.1.1)
77+
78+
BUNDLED WITH
79+
2.4.20

TinyFPGA EX Schematic v1.2.0.pdf

-521 KB
Binary file not shown.

_config.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
theme: jekyll-theme-slate
1+
title: TinyFPGA
2+
baseurl: "" # the subpath of your site, e.g. /blog
3+
url: "https://www.tinyfpga.com" # the base hostname & protocol for your site, e.g. http://example.com
4+
github_username: tinyfpga
25

3-
defaults:
4-
-
5-
scope:
6-
path: ""
7-
values:
8-
site:
9-
title: "TinyFPGA.com"
6+
# Build settings
7+
theme: minima

_layouts/default.html

Lines changed: 0 additions & 68 deletions
This file was deleted.

_site/404.html

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<!DOCTYPE html>
2+
<html lang="en"><head>
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
6+
<title>TinyFPGA</title>
7+
<meta name="generator" content="Jekyll v4.3.2" />
8+
<meta property="og:title" content="TinyFPGA" />
9+
<meta property="og:locale" content="en_US" />
10+
<link rel="canonical" href="http://localhost:4000/404.html" />
11+
<meta property="og:url" content="http://localhost:4000/404.html" />
12+
<meta property="og:site_name" content="TinyFPGA" />
13+
<meta property="og:type" content="website" />
14+
<meta name="twitter:card" content="summary" />
15+
<meta property="twitter:title" content="TinyFPGA" />
16+
<script type="application/ld+json">
17+
{"@context":"https://schema.org","@type":"WebPage","headline":"TinyFPGA","url":"http://localhost:4000/404.html"}</script>
18+
<!-- End Jekyll SEO tag -->
19+
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="TinyFPGA" /></head>
20+
<body><header class="site-header" role="banner">
21+
22+
<div class="wrapper"><a class="site-title" rel="author" href="/">TinyFPGA</a><nav class="site-nav">
23+
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
24+
<label for="nav-trigger">
25+
<span class="menu-icon">
26+
<svg viewBox="0 0 18 15" width="18px" height="15px">
27+
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
28+
</svg>
29+
</span>
30+
</label>
31+
32+
<div class="trigger"><a class="page-link" href="/a-series-guide.html">TinyFPGA A-Series User Guide</a><a class="page-link" href="/b-series-guide.html">TinyFPGA B-Series User Guide</a><a class="page-link" href="/bx/guide.html">TinyFPGA BX User Guide</a><a class="page-link" href="/">TinyFPGA</a></div>
33+
</nav></div>
34+
</header>
35+
<main class="page-content" aria-label="Content">
36+
<div class="wrapper">
37+
<style type="text/css" media="screen">
38+
.container {
39+
margin: 10px auto;
40+
max-width: 600px;
41+
text-align: center;
42+
}
43+
h1 {
44+
margin: 30px 0;
45+
font-size: 4em;
46+
line-height: 1;
47+
letter-spacing: -1px;
48+
}
49+
</style>
50+
51+
<div class="container">
52+
<h1>404</h1>
53+
54+
<p><strong>Page not found :(</strong></p>
55+
<p>The requested page could not be found.</p>
56+
</div>
57+
58+
</div>
59+
</main><footer class="site-footer h-card">
60+
<data class="u-url" href="/"></data>
61+
62+
<div class="wrapper">
63+
64+
<h2 class="footer-heading">TinyFPGA</h2>
65+
66+
<div class="footer-col-wrapper">
67+
<div class="footer-col footer-col-1">
68+
<ul class="contact-list">
69+
<li class="p-name">TinyFPGA</li></ul>
70+
</div>
71+
72+
<div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/tinyfpga"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">tinyfpga</span></a></li></ul>
73+
</div>
74+
75+
<div class="footer-col footer-col-3">
76+
<p></p>
77+
</div>
78+
</div>
79+
80+
</div>
81+
82+
</footer>
83+
</body>
84+
85+
</html>

_site/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tinyfpga.com

_site/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# tinyfpga.com website
2+
The landing page and supporting pages for the tinyfpga.com website. This does
3+
not necessarily include things like the wiki or forums.

0 commit comments

Comments
 (0)