Skip to main content

Pelican github activity modified to work with nice-blog theme

Project description

pelican-github-activity

Github activity plugin made to work with nice-blog theme

GitHub activity

This plugin makes use of the feedparser_ library that you'll need to install.

Set the GITHUB_ACTIVITY_FEED parameter to your GitHub activity feed. For example, to track Pelican project activity, the setting would be::

 GITHUB_ACTIVITY_FEED = 'https://github.com/getpelican.atom'

If you want to limit the amount of entries to a certain maximum set the GITHUB_ACTIVITY_MAX_ENTRIES parameter.

 GITHUB_ACTIVITY_MAX_ENTRIES = 10

On the template side, you just have to iterate over the github_activity variable, as in this example::

 {% if GITHUB_ACTIVITY_FEED %}
    <div class="social">
            <h2>Github Activity</h2>
            <ul>

            {% for entry in github_activity %}
                <li><b>{{ entry[0] }}</b><br /> {{ entry[1] }}</li>
            {% endfor %}
            </ul>
    </div><!-- /.github_activity -->
 {% endif %}

github_activity is a list of lists. The first element is the title, and the second element is the raw HTML from GitHub.

feedparser

Acknowledgements

This package is based on the github_activity package by Mario Lang and updated to work with the nice-blog theme.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pelican_github_activity-0.1.0.tar.gz (2.8 kB view hashes)

Uploaded Source

Built Distribution

pelican_github_activity-0.1.0-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page