aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancisco Fuentes <git@ffuent.es>2021-01-27 20:59:31 -0300
committerFrancisco Fuentes <git@ffuent.es>2021-01-27 20:59:31 -0300
commit8604b2e56670b4b3adb6f0ee36732e65cd17ddc9 (patch)
treedb016f386531627cd6bd916f4e86c2f91ec3e058
downloadmonocol-theme-8604b2e56670b4b3adb6f0ee36732e65cd17ddc9.tar.gz
Initial commit!
-rw-r--r--.gitignore6
-rw-r--r--Gemfile4
-rw-r--r--LICENSE.txt21
-rw-r--r--README.md52
-rw-r--r--_config.yml13
-rw-r--r--_data/navigation.yml5
-rw-r--r--_includes/footer.html4
-rw-r--r--_includes/head.html13
-rw-r--r--_includes/header.html3
-rw-r--r--_includes/navigation.html8
-rw-r--r--_layouts/default.html21
-rw-r--r--_layouts/home.html62
-rw-r--r--_layouts/page.html5
-rw-r--r--_layouts/post.html26
-rw-r--r--_layouts/posts_by_category.html40
-rw-r--r--_layouts/tag.html15
-rw-r--r--_plugins/tags.rb26
-rw-r--r--_posts/2013-12-23-lorem-ipsum.md18
-rw-r--r--_posts/2013-12-25-random-text.md17
-rw-r--r--_posts/2021-01-27-welcome-jekyll-syntax.md25
-rw-r--r--_sass/monocol.scss123
-rw-r--r--_sass/pygments.css69
-rw-r--r--about.md5
-rw-r--r--assets/css/monocol.scss6
-rw-r--r--category/lorem.md6
-rw-r--r--category/random.md6
-rw-r--r--hola.md5
-rw-r--r--index.md6
-rw-r--r--monocol-theme.gemspec22
-rw-r--r--screenshot.pngbin0 -> 14584 bytes
30 files changed, 632 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..736d740
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,6 @@
+*.gem
+.bundle
+.jekyll-cache
+.sass-cache
+_site
+Gemfile.lock
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..bb94df8
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,4 @@
+# frozen_string_literal: true
+
+source "https://rubygems.org"
+gemspec
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..0d41564
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2021 Francisco Fuentes
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..933d9ee
--- /dev/null
+++ b/README.md
@@ -0,0 +1,52 @@
+# monocol-theme
+
+Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
+
+To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
+
+TODO: Delete this and the text above, and describe your gem
+
+
+## Installation
+
+Add this line to your Jekyll site's `Gemfile`:
+
+```ruby
+gem "monocol-theme"
+```
+
+And add this line to your Jekyll site's `_config.yml`:
+
+```yaml
+theme: monocol-theme
+```
+
+And then execute:
+
+ $ bundle
+
+Or install it yourself as:
+
+ $ gem install monocol-theme
+
+## Usage
+
+TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
+
+## Contributing
+
+Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
+
+## Development
+
+To set up your environment to develop this theme, run `bundle install`.
+
+Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
+
+When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
+To add a custom directory to your theme-gem, please edit the regexp in `monocol-theme.gemspec` accordingly.
+
+## License
+
+The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
+
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..acf7c74
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,13 @@
+title: Your website
+theme: monocol-theme
+author: ffuentes
+license: CC-BY
+highlighter: rouge
+pagination:
+
+ # Site-wide kill switch, disabled here it doesn't run at all
+ enabled: true
+ sort_field: 'date'
+ sort_reverse: true
+plugins:
+ - jekyll-paginate-v2 \ No newline at end of file
diff --git a/_data/navigation.yml b/_data/navigation.yml
new file mode 100644
index 0000000..24f8fab
--- /dev/null
+++ b/_data/navigation.yml
@@ -0,0 +1,5 @@
+links:
+- title: About
+ url: /about.html
+- title: Hola
+ url: /hola.html \ No newline at end of file
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..a64e490
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,4 @@
+<footer>
+ <p><a href="/feed.xml">RSS</a></p>
+ <p>{{site.license}} {{ 'now' | date: "%Y" }} {{ site.author }} </p>
+</footer> \ No newline at end of file
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..4701dbe
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+
+ <head>
+ <meta charset="utf-8"/>
+
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="HandheldFriendly" content="true">
+ <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
+ <title>{% if page.title %} {{page.title}} - {% endif %} {{site.title}}</title>
+
+ <link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/css/monocol.css" />
+ <link rel="shortcut icon" href="{{ site.baseurl }}/favicon.ico">
+ </head>
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..1d43f28
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,3 @@
+<header class="site-header">
+ <a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
+</header> \ No newline at end of file
diff --git a/_includes/navigation.html b/_includes/navigation.html
new file mode 100644
index 0000000..5173386
--- /dev/null
+++ b/_includes/navigation.html
@@ -0,0 +1,8 @@
+
+ <nav role="navigation">
+ <ul class="menu">
+ {% for item in site.data.navigation.links %}
+ <li><a href="{{ item.url }}" {% if item.url == page.url %} class="active"{% endif %}>{{ item.title }}</a></li>
+ {% endfor %}
+ </ul>
+ </nav> \ No newline at end of file
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..a331b69
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,21 @@
+
+<!DOCTYPE html>
+<html lang="en" >
+ {% include head.html %}
+ <body>
+ <main role="main">
+ {% include header.html %}
+
+ {% include navigation.html %}
+ <hr>
+ <article>
+ {{ content }}
+ </article>
+ <hr>
+
+ {% include footer.html %}
+
+ </main>
+
+ </body>
+</html> \ No newline at end of file
diff --git a/_layouts/home.html b/_layouts/home.html
new file mode 100644
index 0000000..3d576f9
--- /dev/null
+++ b/_layouts/home.html
@@ -0,0 +1,62 @@
+---
+layout: default
+pagination:
+ enabled: true
+ per_page: 5
+ sort_field: 'date'
+ sort_reverse: true
+---
+
+<div class="home">
+
+
+ {{ content }}
+
+
+ {% if site.pagination.enabled %}
+ {% assign posts = paginator.posts %}
+ {% else %}
+ {% assign posts = site.posts %}
+ {% endif %}
+
+
+ {%- if posts.size > 0 -%}
+ {%- if page.list_title -%}
+ <h2 class="post-list-heading">{{ page.list_title }}</h2>
+ {%- endif -%}
+ <ul class="post-list">
+ {%- assign date_format = site.minima.date_format | default: "%Y/%m/%d" -%}
+ {%- for post in posts -%}
+ <li>
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
+ <h3>
+ <a class="post-link" href="{{ post.url | relative_url }}">
+ {{ post.title | escape }}
+ </a>
+ </h3>
+ {%- if site.show_excerpts -%}
+ {{ post.excerpt }}
+ {%- endif -%}
+ </li>
+ {%- endfor -%}
+ </ul>
+
+ {% if paginator.total_pages > 1 %}
+ <ul>
+ {% if paginator.previous_page %}
+ <li>
+ <a href="{{ paginator.previous_page_path | prepend: site.baseurl }}">Previous</a>
+ </li>
+ {% endif %}
+ {% if paginator.next_page %}
+ <li>
+ <a href="{{ paginator.next_page_path | prepend: site.baseurl }}">Next</a>
+ </li>
+ {% endif %}
+ </ul>
+ {% endif %}
+
+
+ {%- endif -%}
+
+</div> \ No newline at end of file
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 0000000..5e71126
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,5 @@
+---
+layout: default
+---
+
+{{ content }}
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..194fbbb
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,26 @@
+---
+layout: default
+---
+<header class="post-header">
+ <h1 class="post-title">{{ page.title }}</h1>
+</header>
+<p><span class="time">{{ page.date | date:"%d/%m/%Y" }}</span></p>
+{% if page.categories %}
+ <span class="categories">
+ <p>&raquo; {% for category in page.categories %}<a href="/category/{{ category }}">{{ category }}</a>{% if forloop.last == false %}, {% endif %}{% endfor %}</p>
+ </span>
+{% endif %}
+
+{{ content }}
+
+<p><span class="meta"><time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%-d %m %Y" }}</time> &middot; {% for tag in page.tags %}
+ <a href="/tag/{{tag}}">{{tag}}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}</span></p>
+
+<div class="PageNavigation">
+ {% if page.previous.url %}
+ <p><a class="prev" href="{{ page.previous.url }}">&laquo; {{ page.previous.title }}</a></p>
+ {% endif %}
+ {% if page.next.url %}
+ <p><a class="next" href="{{ page.next.url }}">{{ page.next.title }} &raquo;</a></p>
+ {% endif %}
+</div> \ No newline at end of file
diff --git a/_layouts/posts_by_category.html b/_layouts/posts_by_category.html
new file mode 100644
index 0000000..02892ee
--- /dev/null
+++ b/_layouts/posts_by_category.html
@@ -0,0 +1,40 @@
+---
+layout: default
+---
+<header class="post-header">
+ <h1 class="post-title">Articles by category: {{ page.categories }}</h1>
+</header>
+
+<div class="post-content">
+
+ <p>{{c_slug}}</p>
+
+
+ {% if site.categories[page.categories] %}
+ {% for post in site.categories[page.categories] %}
+ {% capture post_year %}{{ post.date | date: '%Y' }}{% endcapture %}
+ {% if forloop.first %}
+ <h4>{{ post_year }}</h4>
+ <div class="list-group">
+ {% endif %}
+
+ {% if forloop.first == false %}
+ {% assign previous_index = forloop.index0 | minus: 1 %}
+ {% capture previous_post_year %}{{ site.categories[page.categories][previous_index].date | date: '%Y' }}{% endcapture %}
+ {% if post_year != previous_post_year %}
+ </div>
+ <h4>{{ post_year }}</h4>
+ <div class="list-group">
+ {% endif %}
+ {% endif %}
+ <ul class="posts">
+ <li><a href="{{ post.url }}">{{ post.title }}</a> &raquo; <i><span>{{ post.date | date_to_string }}</span></i></li>
+ </ul>
+ {% if forloop.last %}
+ </div>
+ {% endif %}
+ {% endfor %}
+ {% else %}
+ <p>There are no posts in this categories.</p>
+ {% endif %}
+</div> \ No newline at end of file
diff --git a/_layouts/tag.html b/_layouts/tag.html
new file mode 100644
index 0000000..197e568
--- /dev/null
+++ b/_layouts/tag.html
@@ -0,0 +1,15 @@
+---
+layout: default
+---
+
+<section class="posts">
+<h1>Tag #{{page.tag}}</h1>
+ <ul>
+ {% for post in site.posts %}
+ {% if post.tags contains page.tag %}
+ <li><a class="post" href="{{ post.url }}">{{ post.title }}</a> <time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%m-%d-%Y" }}</time></li>
+ {% endif %}
+ {% endfor %}
+ </ul>
+
+</section> \ No newline at end of file
diff --git a/_plugins/tags.rb b/_plugins/tags.rb
new file mode 100644
index 0000000..63c800c
--- /dev/null
+++ b/_plugins/tags.rb
@@ -0,0 +1,26 @@
+module Jekyll
+ class TagPageGenerator < Generator
+ safe true
+
+ def generate(site)
+ tags = site.posts.docs.flat_map { |post| post.data['tags'] || [] }.to_set
+ tags.each do |tag|
+ site.pages << TagPage.new(site, site.source, tag)
+ end
+ end
+ end
+
+ class TagPage < Page
+ def initialize(site, base, tag)
+ @site = site
+ @base = base
+ @dir = File.join('tag', tag)
+ @name = 'index.html'
+
+ self.process(@name)
+ self.read_yaml(File.join(base, '_layouts'), 'tag.html')
+ self.data['tag'] = tag
+ self.data['title'] = "Tag: #{tag}"
+ end
+ end
+end \ No newline at end of file
diff --git a/_posts/2013-12-23-lorem-ipsum.md b/_posts/2013-12-23-lorem-ipsum.md
new file mode 100644
index 0000000..df3bc24
--- /dev/null
+++ b/_posts/2013-12-23-lorem-ipsum.md
@@ -0,0 +1,18 @@
+---
+layout: post
+title: "Lorem Ipsum"
+date: 2013-12-23 00:18:23 +0700
+categories: [lorem]
+tags: lorem ipsum dolor nosense
+---
+
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ultrices semper magna sit amet molestie. Donec porta efficitur nisl nec fringilla. Morbi sollicitudin eros vitae nisl pharetra, ut viverra mauris feugiat. Proin pellentesque velit vitae libero pellentesque ultrices. Duis convallis, mi ut placerat vestibulum, libero quam varius lectus, non condimentum leo nisi a leo. Morbi pellentesque commodo risus, non gravida mi imperdiet finibus. Donec sagittis augue vel dolor efficitur, nec ornare lectus mollis.
+
+Mauris fermentum dui quis dignissim consectetur. Sed quis posuere lacus. Praesent libero tortor, semper id tellus non, ultrices mattis est. Sed lobortis sagittis hendrerit. Cras auctor turpis et porta accumsan. Pellentesque accumsan, dolor in pretium aliquam, nisl dui porttitor odio, rhoncus malesuada lectus nunc et sem. Cras purus nulla, varius a nulla at, euismod consequat sem. Etiam scelerisque, justo vel tincidunt pellentesque, nisl ex cursus tortor, ut pellentesque lectus eros fringilla massa. Sed risus orci, vehicula sed pulvinar tincidunt, interdum ut massa. In vitae luctus mi, sed pharetra diam. Nullam sagittis mi id arcu lobortis, non auctor dolor scelerisque. Aliquam dapibus non odio vitae feugiat. Aenean euismod nec nunc eu luctus. Sed molestie mollis pellentesque. Mauris tempor vitae risus ac fermentum. Curabitur nisi est, dignissim nec dui vitae, luctus ultrices elit.
+
+Sed a lorem pharetra, vulputate nibh nec, condimentum erat. Aliquam tincidunt turpis nunc, sed lobortis dui ornare et. In tellus lorem, tempus sit amet dignissim quis, dictum a dolor. Maecenas aliquet molestie lorem. Quisque interdum bibendum lacus id ultricies. Aenean ac lectus maximus lorem iaculis volutpat et ut mi. Sed bibendum feugiat dignissim. Proin sed scelerisque velit. Maecenas a auctor massa. Vivamus fermentum sed tellus vulputate rutrum. Vivamus aliquet odio condimentum elit pulvinar, sit amet interdum risus porttitor. Vestibulum eu lacus ligula. Aliquam hendrerit urna in arcu feugiat mollis. Donec id ipsum pulvinar, imperdiet tortor et, gravida dolor.
+
+In mattis magna justo, at pulvinar massa porttitor sed. Morbi vel lacus metus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Fusce eget urna dignissim, commodo metus vitae, blandit metus. Duis tincidunt metus quis sem pharetra, nec maximus lacus posuere. Duis velit nulla, malesuada quis est eu, laoreet dapibus metus. Donec sed velit mi. Mauris sed sollicitudin diam. Vestibulum pharetra fringilla velit quis malesuada. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Donec eget ullamcorper enim, ornare tincidunt lectus. Aliquam vestibulum, ante quis congue ultrices, sem purus gravida orci, in congue neque sapien sed sem. Integer laoreet diam ut condimentum aliquam. Nulla volutpat nisi ante, eget consectetur nulla efficitur a.
+
+Sed varius euismod nisi, id dictum est feugiat eu. Aliquam nulla magna, sollicitudin sit amet tellus in, euismod porta tortor. In finibus posuere ex sit amet vehicula. Sed et facilisis eros. Morbi in arcu vel tortor maximus molestie. Praesent iaculis scelerisque consequat. Sed volutpat aliquam risus, sed iaculis lacus finibus a. Integer commodo eros id purus luctus, sed eleifend magna tincidunt. Aliquam maximus luctus lorem, id commodo erat. \ No newline at end of file
diff --git a/_posts/2013-12-25-random-text.md b/_posts/2013-12-25-random-text.md
new file mode 100644
index 0000000..98e4287
--- /dev/null
+++ b/_posts/2013-12-25-random-text.md
@@ -0,0 +1,17 @@
+---
+layout: post
+title: "Random Text"
+date: 2013-12-25 00:18:23 -0300
+categories: [random]
+---
+
+
+Around more danced a hung jeepers and admirable disrespectfully far jaguar aboard while goodness less pulled so as much insolent played rose off far wearisome and coughed truculent goodness.
+
+Goldfish less hey tyrannically because less much dangerously away grandly close much filled alas much circa a jeepers supportive when thus palpably airy up so some flipped up randomly across tenably.
+
+Well craven gnashed but bald brilliant the well toward wholesomely cardinal some insincere more above ignoble along well scantly ouch hence a informally llama notably so caterpillar irrationally goodness and as in.
+
+Besides panda far held well in jeez teasingly darn much far jeepers some cut purposeful wow some strangely showily alas much goodness baboon jealously bound ouch juggled suitable alongside yikes.
+
+Less untiring far seal hummingbird jeepers where but smiled showily wow one haltered craven when between appallingly after dog patted yikes pithy yikes much obsessive above wow.
diff --git a/_posts/2021-01-27-welcome-jekyll-syntax.md b/_posts/2021-01-27-welcome-jekyll-syntax.md
new file mode 100644
index 0000000..122690a
--- /dev/null
+++ b/_posts/2021-01-27-welcome-jekyll-syntax.md
@@ -0,0 +1,25 @@
+---
+layout: post
+title: Welcome to jekyll (test highlighting)
+date: 2021-01-27 00:18:23 -0300
+categories: [random]
+---
+You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
+
+To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
+
+Jekyll also offers powerful support for code snippets:
+
+{% highlight ruby %}
+def print_hi(name)
+ puts "Hi, #{name}"
+end
+print_hi('Tom')
+#=> prints 'Hi, Tom' to STDOUT.
+{% endhighlight %}
+
+Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
+
+[jekyll-docs]: http://jekyllrb.com/docs/home
+[jekyll-gh]: https://github.com/jekyll/jekyll
+[jekyll-talk]: https://talk.jekyllrb.com/ \ No newline at end of file
diff --git a/_sass/monocol.scss b/_sass/monocol.scss
new file mode 100644
index 0000000..ac6e92d
--- /dev/null
+++ b/_sass/monocol.scss
@@ -0,0 +1,123 @@
+/*
+# Este archivo es liberado bajo las mismas condiciones de la licencia MIT.
+# v. 0.01 monocol hoja de estilo 26-11-2020
+# Francisco Fuentes (fuentes_f en encompasserve.org / correo en ffuent.es)
+
+*/
+
+h1 {
+ font-family: monospace;
+ font-size: 24px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 700;
+ line-height: 26.4px;
+ text-decoration: underline
+}
+
+h2 {
+ font-family: monospace;
+ font-size: 20px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 700;
+}
+
+h3 {
+ font-family: monospace;
+ font-size: 14px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 700;
+ line-height: 15.4px;
+}
+
+.site-title {
+ font-family: monospace;
+ font-size: 24px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 700;
+ line-height: 26.4px;
+ text-decoration: none;
+}
+
+a:link, a:visited, a:active {
+ color:#000;
+ font-weight:normal;
+}
+
+a:hover {
+ background-color:#000;
+ color:#fff;
+ text-decoration:none;
+}
+
+p, li {
+ font-family: monospace;
+ font-size: 14px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 400;
+ line-height: 20px;
+}
+
+blockquote {
+ font-family: monospace;
+ font-size: 21px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 400;
+ line-height: 30px;
+}
+
+pre {
+ font-family: monospace;
+ font-size: 13px;
+ font-style: normal;
+ font-variant: normal;
+ font-weight: 400;
+ line-height: 18.5714px;
+}
+
+code {
+ font-family: monospace;
+ font-size: 12px;
+ font-style: italic;
+ font-variant: normal;
+ font-weight: 600;
+ line-height: 18.5714px;
+}
+
+
+
+img {
+ max-width: 100%;
+ height: auto;
+}
+
+.center-image {
+ margin: 0 auto;
+ display: block;
+}
+
+.img-container {
+ text-align: center;
+}
+
+ul.menu li{
+ display:inline;
+}
+
+article {
+ padding: 30px 0px;
+ }
+
+@media only screen and (min-width: 768px) {
+ /* For desktop: */
+ main {
+ word-wrap: break-word;
+ width: 600px;
+ margin: 0 auto;
+ }
+} \ No newline at end of file
diff --git a/_sass/pygments.css b/_sass/pygments.css
new file mode 100644
index 0000000..572069c
--- /dev/null
+++ b/_sass/pygments.css
@@ -0,0 +1,69 @@
+.highlight .hll { background-color: #ffffcc }
+.highlight { background: #f8f8f8; }
+.highlight .c { color: #408080; font-style: italic } /* Comment */
+.highlight .err { border: 1px solid #FF0000 } /* Error */
+.highlight .k { color: #008000; font-weight: bold } /* Keyword */
+.highlight .o { color: #666666 } /* Operator */
+.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
+.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
+.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
+.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
+.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
+.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
+.highlight .gd { color: #A00000 } /* Generic.Deleted */
+.highlight .ge { font-style: italic } /* Generic.Emph */
+.highlight .gr { color: #FF0000 } /* Generic.Error */
+.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.highlight .gi { color: #00A000 } /* Generic.Inserted */
+.highlight .go { color: #888888 } /* Generic.Output */
+.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
+.highlight .gs { font-weight: bold } /* Generic.Strong */
+.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.highlight .gt { color: #0044DD } /* Generic.Traceback */
+.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
+.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
+.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
+.highlight .kp { color: #008000 } /* Keyword.Pseudo */
+.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
+.highlight .kt { color: #B00040 } /* Keyword.Type */
+.highlight .m { color: #666666 } /* Literal.Number */
+.highlight .s { color: #BA2121 } /* Literal.String */
+.highlight .na { color: #7D9029 } /* Name.Attribute */
+.highlight .nb { color: #008000 } /* Name.Builtin */
+.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
+.highlight .no { color: #880000 } /* Name.Constant */
+.highlight .nd { color: #AA22FF } /* Name.Decorator */
+.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
+.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
+.highlight .nf { color: #0000FF } /* Name.Function */
+.highlight .nl { color: #A0A000 } /* Name.Label */
+.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
+.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
+.highlight .nv { color: #19177C } /* Name.Variable */
+.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
+.highlight .w { color: #bbbbbb } /* Text.Whitespace */
+.highlight .mb { color: #666666 } /* Literal.Number.Bin */
+.highlight .mf { color: #666666 } /* Literal.Number.Float */
+.highlight .mh { color: #666666 } /* Literal.Number.Hex */
+.highlight .mi { color: #666666 } /* Literal.Number.Integer */
+.highlight .mo { color: #666666 } /* Literal.Number.Oct */
+.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
+.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
+.highlight .sc { color: #BA2121 } /* Literal.String.Char */
+.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
+.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
+.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
+.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
+.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
+.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
+.highlight .sx { color: #008000 } /* Literal.String.Other */
+.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
+.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
+.highlight .ss { color: #19177C } /* Literal.String.Symbol */
+.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
+.highlight .fm { color: #0000FF } /* Name.Function.Magic */
+.highlight .vc { color: #19177C } /* Name.Variable.Class */
+.highlight .vg { color: #19177C } /* Name.Variable.Global */
+.highlight .vi { color: #19177C } /* Name.Variable.Instance */
+.highlight .vm { color: #19177C } /* Name.Variable.Magic */
+.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
diff --git a/about.md b/about.md
new file mode 100644
index 0000000..01621c8
--- /dev/null
+++ b/about.md
@@ -0,0 +1,5 @@
+---
+layout: page
+---
+
+This is a page about you. Who are you? People wanna know! Tell them what you're up to. \ No newline at end of file
diff --git a/assets/css/monocol.scss b/assets/css/monocol.scss
new file mode 100644
index 0000000..51754c6
--- /dev/null
+++ b/assets/css/monocol.scss
@@ -0,0 +1,6 @@
+---
+
+---
+
+@import "monocol";
+@import "pygments"; \ No newline at end of file
diff --git a/category/lorem.md b/category/lorem.md
new file mode 100644
index 0000000..0615888
--- /dev/null
+++ b/category/lorem.md
@@ -0,0 +1,6 @@
+---
+layout: posts_by_category
+categories: lorem
+title: lorem
+permalink: /category/lorem
+--- \ No newline at end of file
diff --git a/category/random.md b/category/random.md
new file mode 100644
index 0000000..bf042b4
--- /dev/null
+++ b/category/random.md
@@ -0,0 +1,6 @@
+---
+layout: posts_by_category
+categories: random
+title: random
+permalink: /category/random
+--- \ No newline at end of file
diff --git a/hola.md b/hola.md
new file mode 100644
index 0000000..1064f58
--- /dev/null
+++ b/hola.md
@@ -0,0 +1,5 @@
+---
+layout: page
+---
+
+Hola \ No newline at end of file
diff --git a/index.md b/index.md
new file mode 100644
index 0000000..0bb7619
--- /dev/null
+++ b/index.md
@@ -0,0 +1,6 @@
+---
+layout: home
+pagination:
+ enabled: true
+ per_page: 5
+--- \ No newline at end of file
diff --git a/monocol-theme.gemspec b/monocol-theme.gemspec
new file mode 100644
index 0000000..2bad7a1
--- /dev/null
+++ b/monocol-theme.gemspec
@@ -0,0 +1,22 @@
+# frozen_string_literal: true
+
+Gem::Specification.new do |spec|
+ spec.name = "monocol-theme"
+ spec.version = "0.1.0"
+ spec.authors = ["Francisco Fuentes"]
+ spec.email = ["git@ffuent.es"]
+
+ spec.summary = "El tema de Texto-Plano.xyz"
+ spec.homepage = "https://texto-plano.xyz"
+ spec.license = "MIT"
+
+ spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README|_config\.yml)!i) }
+
+ spec.add_runtime_dependency "jekyll", "~> 4.2"
+ spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
+ spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
+ spec.add_runtime_dependency "rouge", "~> 3.26"
+ spec.add_runtime_dependency "jekyll-paginate-v2"
+
+ spec.add_development_dependency "bundler"
+end
diff --git a/screenshot.png b/screenshot.png
new file mode 100644
index 0000000..b5c501f
--- /dev/null
+++ b/screenshot.png
Binary files differ
Un proyecto texto-plano.xyz