initial commit

This commit is contained in:
Carneiro 2024-10-02 11:32:19 -03:00
parent 6eda607495
commit 777c41a80e
15 changed files with 139 additions and 11 deletions

View File

@ -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

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -0,0 +1,8 @@
---
layout: default
title: Alice Bin
fix_url: https://alice.ufsj.edu.br/bin
displaymenu: true
---
Pastebin do alice.

View File

@ -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...

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

17
makefile Executable file
View File

@ -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}

View File

@ -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>