Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created September 27, 2019 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/66b48755c9ef2bdca30ee44e6693afef to your computer and use it in GitHub Desktop.
Save ryantm/66b48755c9ef2bdca30ee44e6693afef to your computer and use it in GitHub Desktop.
/nix/store/rb8jzfsbqhyf7wbbkyyq68pj83zxldk6-python3.7-pelican-4.1.1
├── bin
│   ├── pelican
│   ├── pelican-import
│   ├── pelican-quickstart
│   └── pelican-themes
├── lib
│   └── python3.7
│   └── site-packages
│   ├── pelican
│   │   ├── cache.py
│   │   ├── contents.py
│   │   ├── generators.py
│   │   ├── __init__.py
│   │   ├── log.py
│   │   ├── __main__.py
│   │   ├── paginator.py
│   │   ├── __pycache__
│   │   │   ├── cache.cpython-37.pyc
│   │   │   ├── contents.cpython-37.pyc
│   │   │   ├── generators.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── log.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── paginator.cpython-37.pyc
│   │   │   ├── readers.cpython-37.pyc
│   │   │   ├── rstdirectives.cpython-37.pyc
│   │   │   ├── server.cpython-37.pyc
│   │   │   ├── settings.cpython-37.pyc
│   │   │   ├── signals.cpython-37.pyc
│   │   │   ├── urlwrappers.cpython-37.pyc
│   │   │   ├── utils.cpython-37.pyc
│   │   │   └── writers.cpython-37.pyc
│   │   ├── readers.py
│   │   ├── rstdirectives.py
│   │   ├── server.py
│   │   ├── settings.py
│   │   ├── signals.py
│   │   ├── themes
│   │   │   ├── notmyidea
│   │   │   │   ├── static
│   │   │   │   │   ├── css
│   │   │   │   │   │   ├── fonts.css
│   │   │   │   │   │   ├── main.css
│   │   │   │   │   │   ├── pygment.css
│   │   │   │   │   │   ├── reset.css
│   │   │   │   │   │   ├── typogrify.css
│   │   │   │   │   │   └── wide.css
│   │   │   │   │   ├── fonts
│   │   │   │   │   │   ├── font.css
│   │   │   │   │   │   ├── Yanone_Kaffeesatz_400.eot
│   │   │   │   │   │   ├── Yanone_Kaffeesatz_400.svg
│   │   │   │   │   │   ├── Yanone_Kaffeesatz_400.ttf
│   │   │   │   │   │   ├── Yanone_Kaffeesatz_400.woff
│   │   │   │   │   │   └── Yanone_Kaffeesatz_400.woff2
│   │   │   │   │   └── images
│   │   │   │   │   └── icons
│   │   │   │   │   ├── aboutme.png
│   │   │   │   │   ├── bitbucket.png
│   │   │   │   │   ├── delicious.png
│   │   │   │   │   ├── facebook.png
│   │   │   │   │   ├── github.png
│   │   │   │   │   ├── gitorious.png
│   │   │   │   │   ├── gittip.png
│   │   │   │   │   ├── google-groups.png
│   │   │   │   │   ├── google-plus.png
│   │   │   │   │   ├── hackernews.png
│   │   │   │   │   ├── lastfm.png
│   │   │   │   │   ├── linkedin.png
│   │   │   │   │   ├── reddit.png
│   │   │   │   │   ├── rss.png
│   │   │   │   │   ├── slideshare.png
│   │   │   │   │   ├── speakerdeck.png
│   │   │   │   │   ├── stackoverflow.png
│   │   │   │   │   ├── twitter.png
│   │   │   │   │   ├── vimeo.png
│   │   │   │   │   └── youtube.png
│   │   │   │   └── templates
│   │   │   │   ├── analytics.html
│   │   │   │   ├── archives.html
│   │   │   │   ├── article.html
│   │   │   │   ├── article_infos.html
│   │   │   │   ├── author.html
│   │   │   │   ├── authors.html
│   │   │   │   ├── base.html
│   │   │   │   ├── category.html
│   │   │   │   ├── comments.html
│   │   │   │   ├── disqus_script.html
│   │   │   │   ├── github.html
│   │   │   │   ├── index.html
│   │   │   │   ├── page.html
│   │   │   │   ├── period_archives.html
│   │   │   │   ├── tag.html
│   │   │   │   ├── taglist.html
│   │   │   │   ├── tags.html
│   │   │   │   ├── translations.html
│   │   │   │   └── twitter.html
│   │   │   └── simple
│   │   │   └── templates
│   │   │   ├── archives.html
│   │   │   ├── article.html
│   │   │   ├── author.html
│   │   │   ├── authors.html
│   │   │   ├── base.html
│   │   │   ├── categories.html
│   │   │   ├── category.html
│   │   │   ├── gosquared.html
│   │   │   ├── index.html
│   │   │   ├── page.html
│   │   │   ├── pagination.html
│   │   │   ├── period_archives.html
│   │   │   ├── tag.html
│   │   │   ├── tags.html
│   │   │   └── translations.html
│   │   ├── tools
│   │   │   ├── __init__.py
│   │   │   ├── pelican_import.py
│   │   │   ├── pelican_quickstart.py
│   │   │   ├── pelican_themes.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── pelican_import.cpython-37.pyc
│   │   │   │   ├── pelican_quickstart.cpython-37.pyc
│   │   │   │   └── pelican_themes.cpython-37.pyc
│   │   │   └── templates
│   │   │   ├── Makefile.jinja2
│   │   │   ├── pelicanconf.py.jinja2
│   │   │   ├── publishconf.py.jinja2
│   │   │   └── tasks.py.jinja2
│   │   ├── urlwrappers.py
│   │   ├── utils.py
│   │   └── writers.py
│   └── pelican-4.1.1.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
21 directories, 120 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment