Este é o blog de demonstração do tema Attila. Blog alimentado por Pelican, hospedado em https://arulrajnet.github.io/attila-demo
Você pode pegar este repositório e iniciar o blog estático
Requisitos
Instale o python3 depende do seu sistema operacional
sudo apt-get install python3-pip python3-dev
Instale o módulo VirtualEnv
sudo pip3 install -U virtualenv
Clone o blog
git clone --depth=1 https://github.com/arulrajnet/attila-demo
cd attila-demo
git submodule init
cd pelican-plugins
git pull
git checkout master
cd ..
git submodule update --init --recursive
Instale o seguinte módulo para pelicano dentro da pasta attila-demo
virtualenv .venv
source .venv/bin/activate
pip install .
Para ativar o VirtualEnv no Windows (Git-Bash)
source .venv/Scripts/activate
Instale o tema do Attila
Isso não é necessário. Todas as dependências necessárias já estão instaladas. Este é apenas um exemplo para instalar o tema.
pip install git+https://github.com/arulrajnet/attila.git@master
OU
git clone --depth=1 https://github.com/arulrajnet/attila
pelican-themes -i ${PWD}/attila
pelican-themes -l
Instalar usando PIP é recomendado
rm -rf content/*
Nota: Altere o nome da sua filial em vez de "Main"
rm -rf .git
git init
git remote add origin https://github.com/username/new-repository.git
git branch -M main
git push -u origin main
Invoke comandos
invoke --list
invoke build
invoke serve
Ou fazer comandos
make help
make html
make serve
Em seguida, visite http: // localhost: 8000
Para publicar
invoke gh-pages
OU
make publish
make github