getpelican / pelican-themes

Themes for Pelican
https://getpelican.com/
2.12k stars 1.09k forks source link

corrected links in templates #773

Open skramm opened 5 months ago

skramm commented 5 months ago

I noticed some (6) templates still had links in the file base.html on http://alexis.notmyidea.org/pelican/ I wrote and ran a small bash script to replace all of them with http://getpelican.com, globally:

find . -type f -exec grep -l alexis.notmyidea {} \; >/tmp/pelicanfiles
for a in $(cat /tmp/pelicanfiles)
do
    echo $a
    sed 's/alexis.notmyidea.org\/pelican/getpelican.com/g' $a >${a}_NEW
    mv ${a}_NEW $a
done