attila demo
1.0.0
これは、Theme Attilaのデモブログです。 https://arulrajnet.github.io/attila-demoでホストされているペリカンが搭載したブログ
このレポを取り、静的ブログを開始できます
要件
Python3をインストールすると、OSに依存します
sudo apt-get install python3-pip python3-dev
VirtualEnvモジュールをインストールします
sudo pip3 install -U virtualenv
ブログをクローンします
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
attila-demo
フォルダー内にペリカンの次のモジュールをインストールします
virtualenv .venv
source .venv/bin/activate
pip install .
WindowsでVirtualenvをアクティブにする(git-bash)
source .venv/Scripts/activate
Attilaテーマをインストールします
これは必要ありません。必要なすべての依存関係はすでにインストールされています。これは、テーマをインストールするための単なる例です。
pip install git+https://github.com/arulrajnet/attila.git@master
または
git clone --depth=1 https://github.com/arulrajnet/attila
pelican-themes -i ${PWD}/attila
pelican-themes -l
PIPを使用してインストールすることをお勧めします
rm -rf content/*
注:「メイン」の代わりにブランチ名を変更する
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 --list
invoke build
invoke serve
またはコマンドを作成します
make help
make html
make serve
次に、http:// localhost:8000にアクセスしてください
公開します
invoke gh-pages
または
make publish
make github