From 0907dc5a67067a52380fbf7989c073295c10ea32 Mon Sep 17 00:00:00 2001 From: JotaChina Date: Sat, 26 Oct 2024 14:24:32 -0300 Subject: [PATCH] Enviar arquivos para "/" --- .gitignore | 5 +++++ 404.html | 25 +++++++++++++++++++++++++ Gemfile | 9 +++++++++ _config.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ about.markdown | 18 ++++++++++++++++++ 5 files changed, 103 insertions(+) create mode 100644 .gitignore create mode 100644 404.html create mode 100644 Gemfile create mode 100644 _config.yml create mode 100644 about.markdown diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f40fbd8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +_site +.sass-cache +.jekyll-cache +.jekyll-metadata +vendor diff --git a/404.html b/404.html new file mode 100644 index 0000000..086a5c9 --- /dev/null +++ b/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..fcf1935 --- /dev/null +++ b/Gemfile @@ -0,0 +1,9 @@ +source "https://rubygems.org" + +gem "jekyll" +gem "alice", git: "https://git.alice.ufsj.edu.br/Alice/AliceTheme" + +group :jekyll_plugins do + gem "jekyll-datapage-generator" +end + diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..9588070 --- /dev/null +++ b/_config.yml @@ -0,0 +1,46 @@ +title: MMPSearch +email: your-email@example.com +description: >- # this means to ignore newlines until "baseurl:" + Write an awesome description for your new site here. You can edit this + line in _config.yml. It will appear in your document head meta (for + Google search results) and in your feed.xml site description. +baseurl: "/~jotachina/mmpSearch/" # the subpath of your site, e.g. /blog +url: "https://alice.ufsj.edu.br" # the base hostname & protocol for your site, e.g. http://example.com + +theme: alice + +plugins: + - jekyll-datapage-generator + +page_gen-dirs: true + +page_gen: +- data: processed_data + template: projetos + dir: output_pages + index_files: false + name: filename + debug: false + +# Build settings + +# Exclude from processing. +# The following items will not be processed, by default. +# Any item listed under the `exclude:` key here will be automatically added to +# the internal "default list". +# +# Excluded items can be processed by explicitly listing the directories or +# their entries' file path in the `include:` list. +# +# exclude: +# - .sass-cache/ +# - .jekyll-cache/ +# - gemfiles/ +# - Gemfile +# - Gemfile.lock +# - node_modules/ +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ +# - scripts/ diff --git a/about.markdown b/about.markdown new file mode 100644 index 0000000..8b4e0b2 --- /dev/null +++ b/about.markdown @@ -0,0 +1,18 @@ +--- +layout: page +title: About +permalink: /about/ +--- + +This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) + +You can find the source code for Minima at GitHub: +[jekyll][jekyll-organization] / +[minima](https://github.com/jekyll/minima) + +You can find the source code for Jekyll at GitHub: +[jekyll][jekyll-organization] / +[jekyll](https://github.com/jekyll/jekyll) + + +[jekyll-organization]: https://github.com/jekyll