generated from Alice/alice-jekyll-template
initial commit
This commit is contained in:
parent
6eda607495
commit
777c41a80e
14
_config.yml
14
_config.yml
|
@ -1,15 +1,11 @@
|
|||
title: NOME DO SITE
|
||||
title: Wonderland
|
||||
description: >- # this means to ignore newlines until "baseurl:"
|
||||
DESCRIÇÃO DO SITE
|
||||
|
||||
# baseurl: "" # the subpath of your site, e.g. /blog
|
||||
# url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
||||
baseurl: "/s/wonderland" # 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
|
||||
|
||||
# Build settings
|
||||
theme: alice
|
||||
# plugins:
|
||||
# - jekyll-feed
|
||||
|
||||
|
||||
collections_dir: collections
|
||||
|
||||
|
@ -22,6 +18,4 @@ header_pages:
|
|||
exclude:
|
||||
- LICENSE
|
||||
- README.md
|
||||
# - makefile
|
||||
# - Gemfile
|
||||
# - Gemfile.lock
|
||||
- makefile
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Alice Dash
|
||||
fix_url: https://git.alice.ufsj.edu.br/
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Um dashboard com informações do funcionamento do servidor.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Alice Files
|
||||
fix_url: https://alice.dcomp.ufsj.edu.br/
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Alice files é um serviço de SFTP, FTP e WebDav no servidor do Alice.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Alice Index
|
||||
fix_url: https://alice.ufsj.edu.br/s/alice_index
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Alice Index indexa os arquivos no diretório public_html dos usuários.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Alice Sites
|
||||
fix_url: https://alice.ufsj.edu.br/s
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Alice sites são os sites hospedados juntamente do domnínio do alice, usando o esquema do jekyll de compartilhamento de temas.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Alice Bin
|
||||
fix_url: https://alice.ufsj.edu.br/bin
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Pastebin do alice.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Alicecloud
|
||||
fix_url: https://drive.alice.ufsj.edu.br/
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Uma plataforma de nuvem do Alice que possue diversos serviços, como video conferência, hospedagem de arquivos, notas, documentos e etc...
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: AlicePad
|
||||
fix_url: https://alice.ufsj.edu.br/pad
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
AlicePad é uma instância de etherpad hospedada no servidor do Alice.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Gitea
|
||||
fix_url: https://git.alice.ufsj.edu.br/
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Gitea e uma plataforma de git do Alice, para versionamento e distribuição de softwares e codigos do laboratorio.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Jitsi Meet
|
||||
fix_url: https://meet.alice.ufsj.edu.br/
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
Jitsi meet é uma plataforma de vídeo conferências hospedada no servidor do Alice.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: PPA
|
||||
fix_url: https://alice.ufsj.edu.br/ppa
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
O repositório de pacotes do Alice.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Public HTML
|
||||
fix_url: https://alice.ufsj.edu.br/public_html
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
O public_html dos usuários do laboratório.
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: WikiLices
|
||||
fix_url: https://alice.ufsj.edu.br/wiki
|
||||
displaymenu: true
|
||||
---
|
||||
|
||||
WikiLices é o wiki do Alice, onde você pode encontrar informações diversas sobre o laboratorio e suas pesquisas.
|
|
@ -0,0 +1,17 @@
|
|||
JEKYLL_CMD = bundle exec jekyll
|
||||
DEST_PATH = /var/www/html/alice_sites/wonderland
|
||||
DEST_DIR_FLAGS = --destination=${DEST_PATH}
|
||||
BUILD_FLAGS = --trace
|
||||
SERVE_FLAGS = -H 0.0.0.0 -P 33002
|
||||
|
||||
all:
|
||||
sg www-data -c "${JEKYLL_CMD} build ${BUILD_FLAGS} ${DEST_DIR_FLAGS}"
|
||||
|
||||
deploy:
|
||||
${JEKYLL_CMD} build ${BUILD_FLAGS} ${DEST_DIR_FLAGS}
|
||||
|
||||
watch:
|
||||
${JEKYLL_CMD} build ${BUILD_FLAGS} ${DEST_DIR_FLAGS} -w
|
||||
|
||||
serve:
|
||||
${JEKYLL_CMD} serve ${SRC_DIR_FLAGS} ${SERVE_FLAGS}
|
|
@ -1,6 +1,27 @@
|
|||
---
|
||||
layout: default
|
||||
title: Wonderland
|
||||
displaymenu: true
|
||||
permalink: /
|
||||
---
|
||||
|
||||
MEU SITE EH BAO
|
||||
<div class="section trens">
|
||||
<h1> {{site.title}} </h1>
|
||||
<h5>Serviços disponíveis do Wonderland.</h5>
|
||||
|
||||
{% assign trens = site.wonderland %}
|
||||
<div class="container">
|
||||
<div class="columns is-multiline">
|
||||
{% for trem in trens %}
|
||||
<div class="column is-one-third">
|
||||
<a href="{{ trem.fix_url }}">
|
||||
<div class="box">
|
||||
<h3 class="title">{{ trem.title }}</h3>
|
||||
<p class="subtitle">{{trem.content}}</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue