algodynamics-theme 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +1 -0
- data/_includes/navigation.html +11 -0
- data/_layouts/default.html +41 -0
- data/assets/css/main.css +37 -0
- metadata +61 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 632889463c847cdd16c49d23a38ef3040b349b02d957708fcd37099f98b541b6
|
|
4
|
+
data.tar.gz: 39c845de5abde22a4c5397d990520e15019bc363efd5cd6056d2a5f00280a0b9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: b58e242fd1a63fcdaff6c567ce58792c2c80a643383554406696e0751a089880f73e2b1be248fa4f6a58df903717ceb0a5a9051cc090e5fe4bcbc5ba16987f9a
|
|
7
|
+
data.tar.gz: 19193a3b2d4d8fe3f84b8809fa027c3cbabe5272e5d7c834d59bfdc3b91a509d3213a6cc6b17a6941fdda5bc6951636478c6d7a45b3744b322080811970c29b3
|
data/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Welcome to algodynamics theme!
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<div class="flex bg-gray-700 px-2 flex justify-start items-center">
|
|
2
|
+
<nav class="flex text-gray-200">
|
|
3
|
+
{% for item in site.data.navigation %}
|
|
4
|
+
<a href="{{ item.link }}"
|
|
5
|
+
{% if page.url == item.link %}class="py-1 px-2 bg-gray-400 text-black"
|
|
6
|
+
{% else %}class="py-1 px-2 hover:bg-gray-400 hover:text-gray-800"{% endif %}>
|
|
7
|
+
{{ item.name }}
|
|
8
|
+
</a>
|
|
9
|
+
{% endfor %}
|
|
10
|
+
</nav>
|
|
11
|
+
</div>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<title>{{ page.title }}</title>
|
|
6
|
+
<link
|
|
7
|
+
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
|
|
8
|
+
rel="stylesheet"
|
|
9
|
+
/>
|
|
10
|
+
<link
|
|
11
|
+
href="./assets/css/main.css"
|
|
12
|
+
rel="stylesheet"
|
|
13
|
+
/>
|
|
14
|
+
<script src="{{ page.jsfile }}"></script>
|
|
15
|
+
</head>
|
|
16
|
+
<body class="flex flex-col h-screen overflow-hidden">
|
|
17
|
+
<div class="bg-gray-800 text-white text-xl font-medium py-4 px-2">
|
|
18
|
+
{{ page.title}}
|
|
19
|
+
</div>
|
|
20
|
+
{% include navigation.html %}
|
|
21
|
+
<div class="flex-grow flex overflow-hidden">
|
|
22
|
+
<div class="w-1/3 bg-gray-200 p-4 overflow-scroll">
|
|
23
|
+
<div class="my-2 text-gray-700 prose">
|
|
24
|
+
|
|
25
|
+
{{ content }}
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
<div class="flex-grow flex w-2/3">
|
|
31
|
+
<div id="elm-app-is-loaded-here"></div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
<script>
|
|
36
|
+
var app = Elm.{{ page.elm }}.init({
|
|
37
|
+
node: document.getElementById("elm-app-is-loaded-here"),
|
|
38
|
+
});
|
|
39
|
+
</script>
|
|
40
|
+
</body>
|
|
41
|
+
</html>
|
data/assets/css/main.css
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* Modified prose classes for heading elements */
|
|
2
|
+
.prose h1 {
|
|
3
|
+
color: #1a202c;
|
|
4
|
+
font-weight: 600;
|
|
5
|
+
font-size: 1.25em;
|
|
6
|
+
margin-top: 1.6em;
|
|
7
|
+
margin-bottom: 0.6em;
|
|
8
|
+
line-height: 1.6;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.prose h2 {
|
|
12
|
+
color: #1a202c;
|
|
13
|
+
font-weight: 550;
|
|
14
|
+
font-size: 1.25em;
|
|
15
|
+
margin-top: 1.5em;
|
|
16
|
+
margin-bottom: 0.5em;
|
|
17
|
+
line-height: 1.5;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.prose h3 {
|
|
21
|
+
color: #1a202c;
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
font-size: 1.125em;
|
|
24
|
+
margin-top: 1.4em;
|
|
25
|
+
margin-bottom: 0.4em;
|
|
26
|
+
line-height: 1.4;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
.prose h4 {
|
|
31
|
+
color: #1a202c;
|
|
32
|
+
font-weight: 450;
|
|
33
|
+
margin-top: 1.3em;
|
|
34
|
+
margin-bottom: 0.3em;
|
|
35
|
+
line-height: 1.3;
|
|
36
|
+
}
|
|
37
|
+
|
metadata
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: algodynamics-theme
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- princevarshney05
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-02-06 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.2'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '4.2'
|
|
27
|
+
description:
|
|
28
|
+
email:
|
|
29
|
+
- princevarshney05@gmail.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- README.md
|
|
35
|
+
- _includes/navigation.html
|
|
36
|
+
- _layouts/default.html
|
|
37
|
+
- assets/css/main.css
|
|
38
|
+
homepage: https://github.com/princevarshney05/algodynamics-theme
|
|
39
|
+
licenses:
|
|
40
|
+
- MIT
|
|
41
|
+
metadata: {}
|
|
42
|
+
post_install_message:
|
|
43
|
+
rdoc_options: []
|
|
44
|
+
require_paths:
|
|
45
|
+
- lib
|
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
47
|
+
requirements:
|
|
48
|
+
- - ">="
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: '0'
|
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
|
+
requirements:
|
|
53
|
+
- - ">="
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '0'
|
|
56
|
+
requirements: []
|
|
57
|
+
rubygems_version: 3.1.2
|
|
58
|
+
signing_key:
|
|
59
|
+
specification_version: 4
|
|
60
|
+
summary: This theme provide templates for algodynamics experiments
|
|
61
|
+
test_files: []
|