Skip to content

Commit 466d753

Browse files
committed
使用新主题
1 parent aee90f2 commit 466d753

File tree

97 files changed

+30324
-2
lines changed

Some content is hidden

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

97 files changed

+30324
-2
lines changed

.dockerignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
*/google-analytics*
2+
.sass-cache/
3+
_site/
4+
5+
README.md
6+
LICENSE
7+
run.sh
8+
.git
9+
.gitignore
10+
.env
11+
Dockerfile
12+
build-image.sh
13+
14+
15+
_config.yml
16+
_posts
17+
assets
18+
_data
19+
_drafts
20+
_includes/tab

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*~
2+
.sass-cache/
3+
_site
4+
google-analytics.js
5+
.env

404.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
---
3+
4+
<!DOCTYPE html>
5+
<html lang="en">
6+
<head>
7+
<title>404 Not Found</title>
8+
9+
<meta charset="utf-8">
10+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
11+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
12+
<meta name="theme-color" content="#009688">
13+
14+
<link rel="stylesheet" href="{{ '/lib/materialize/css/materialize.min.css' | prepend: site.baseurl }}">
15+
<link media="all" rel="stylesheet" type="text/css" href="{{ '/lib/mdi/css/materialdesignicons.min.css' | prepend: site.baseurl }}">
16+
17+
<style>
18+
body {
19+
background-color: #009688;
20+
}
21+
22+
.card-404 {
23+
margin: 40px 10px;
24+
}
25+
26+
.back-home {
27+
position: fixed;
28+
right: 40px;
29+
bottom: 60px;
30+
}
31+
</style>
32+
</head>
33+
34+
<body>
35+
<div class="card-404 valign-wrapper">
36+
<div class="row">
37+
<div class="card cyan hoverable">
38+
<div class="card-content white-text center-align">
39+
40+
<div class="card-title">
41+
<div>
42+
<i class="mdi mdi-numeric-4-box-outline medium" style="margin-right: 30px;"></i>
43+
<i class="mdi mdi-numeric-4-box-outline medium" style="margin-left: 30px;"></i>
44+
</div>
45+
46+
<i class="mdi mdi-numeric-0-box small"></i>
47+
<div style="-ms-transform: rotate(-90deg); -webkit-transform: rotate(-90deg); transform: rotate(-90deg);">
48+
<i class="mdi mdi-brightness-3"></i>
49+
</div>
50+
</div>
51+
52+
<h5>Sorry, we couldn't find that page...</h5>
53+
</div>
54+
</div>
55+
</div>
56+
</div>
57+
58+
<div class="back-home">
59+
<a href="{{ '/' | prepend: site.baseurl }}" class="tooltipped waves-effect waves-light cyan lighten-1 btn-floating btn-large white-text" data-position="left" data-delay="50" data-tooltip="Back to home"><i class="mdi mdi-home-variant left"></i>go home</a>
60+
</div>
61+
62+
<script type="text/javascript" src="{{ '/lib/jquery-min.js' | prepend: site.baseurl }}"></script>
63+
<script src="{{ '/lib/materialize/js/materialize.min.js' | prepend: site.baseurl }}"></script>
64+
</body>
65+
66+
</html>

Dockerfile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
FROM debian:stretch
2+
3+
4+
RUN deps='liblzma-dev zlib1g-dev ruby ruby-bundler ruby-dev' \
5+
&& apt-get update \
6+
&& apt-get install -y gcc g++ make \
7+
&& apt-get install -y $deps
8+
9+
10+
ARG GEM_MIRROR=mirror.https://rubygems.org
11+
ENV GEM_MIRROR ${GEM_MIRROR}
12+
13+
ARG TZ=Etc/UTC
14+
ENV TZ ${TZ}
15+
16+
17+
COPY Gemfile* /tmp/
18+
WORKDIR /tmp
19+
RUN bundle config mirror.https://rubygems.org ${GEM_MIRROR} \
20+
&& bundle install
21+
22+
23+
RUN ln -fs /usr/share/zoneinfo/${TZ} /etc/localtime \
24+
&& dpkg-reconfigure -f noninteractive tzdata
25+
26+
27+
ADD . /materialize-jekyll
28+
WORKDIR /materialize-jekyll
29+
30+
31+
EXPOSE 4000

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gem 'jekyll'
3+
gem 'nokogiri'
4+
gem 'jekyll-paginate'
5+
gem 'jekyll-last-modified-at'
6+
gem 'jemoji'

Gemfile.lock

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
activesupport (4.2.10)
5+
i18n (~> 0.7)
6+
minitest (~> 5.1)
7+
thread_safe (~> 0.3, >= 0.3.4)
8+
tzinfo (~> 1.1)
9+
addressable (2.5.2)
10+
public_suffix (>= 2.0.2, < 4.0)
11+
colorator (1.1.0)
12+
concurrent-ruby (1.0.5)
13+
em-websocket (0.5.1)
14+
eventmachine (>= 0.12.9)
15+
http_parser.rb (~> 0.6.0)
16+
eventmachine (1.2.5)
17+
ffi (1.9.23)
18+
forwardable-extended (2.6.0)
19+
gemoji (3.0.0)
20+
html-pipeline (2.7.1)
21+
activesupport (>= 2)
22+
nokogiri (>= 1.4)
23+
http_parser.rb (0.6.0)
24+
i18n (0.9.5)
25+
concurrent-ruby (~> 1.0)
26+
jekyll (3.7.3)
27+
addressable (~> 2.4)
28+
colorator (~> 1.0)
29+
em-websocket (~> 0.5)
30+
i18n (~> 0.7)
31+
jekyll-sass-converter (~> 1.0)
32+
jekyll-watch (~> 2.0)
33+
kramdown (~> 1.14)
34+
liquid (~> 4.0)
35+
mercenary (~> 0.3.3)
36+
pathutil (~> 0.9)
37+
rouge (>= 1.7, < 4)
38+
safe_yaml (~> 1.0)
39+
jekyll-last-modified-at (1.0.1)
40+
jekyll (~> 3.3)
41+
posix-spawn (~> 0.3.9)
42+
jekyll-paginate (1.1.0)
43+
jekyll-sass-converter (1.5.2)
44+
sass (~> 3.4)
45+
jekyll-watch (2.0.0)
46+
listen (~> 3.0)
47+
jemoji (0.9.0)
48+
activesupport (~> 4.0, >= 4.2.9)
49+
gemoji (~> 3.0)
50+
html-pipeline (~> 2.2)
51+
jekyll (~> 3.0)
52+
kramdown (1.16.2)
53+
liquid (4.0.0)
54+
listen (3.1.5)
55+
rb-fsevent (~> 0.9, >= 0.9.4)
56+
rb-inotify (~> 0.9, >= 0.9.7)
57+
ruby_dep (~> 1.2)
58+
mercenary (0.3.6)
59+
mini_portile2 (2.3.0)
60+
minitest (5.11.3)
61+
nokogiri (1.8.2)
62+
mini_portile2 (~> 2.3.0)
63+
pathutil (0.16.1)
64+
forwardable-extended (~> 2.6)
65+
posix-spawn (0.3.13)
66+
public_suffix (3.0.2)
67+
rb-fsevent (0.10.3)
68+
rb-inotify (0.9.10)
69+
ffi (>= 0.5.0, < 2)
70+
rouge (3.1.1)
71+
ruby_dep (1.5.0)
72+
safe_yaml (1.0.4)
73+
sass (3.5.5)
74+
sass-listen (~> 4.0.0)
75+
sass-listen (4.0.0)
76+
rb-fsevent (~> 0.9, >= 0.9.4)
77+
rb-inotify (~> 0.9, >= 0.9.7)
78+
thread_safe (0.3.6)
79+
tzinfo (1.2.5)
80+
thread_safe (~> 0.1)
81+
82+
PLATFORMS
83+
ruby
84+
85+
DEPENDENCIES
86+
jekyll
87+
jekyll-last-modified-at
88+
jekyll-paginate
89+
jemoji
90+
nokogiri
91+
92+
BUNDLED WITH
93+
1.13.6

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy