Skip to main content

Integrate Foundation columns with FeinCMS contenttypes

Project description

# FeinCMS Grid
An app that integrates Foundation grid with FeinCMS contenttypes. Currently only for Foundation, but other frameworks grid syntax is so similar, I'll likely expand this to handle multiple grid systems later.

###Installation

1. Install Foundation 5 and be sure it is working properly before getting into this package.
2. Run `pip install feincms-grid`.
3. Add `'feincms_grid'` to your `INSTALLED_APPS` setting.
4. Add `FEINCMS_GRID_TOTAL_COLUMNS` to your settings if you want to override the total column amount (default is 12).

###Configuration

#####Content types

Just subclass `GridContent` when creating a content type:

from feincms_grid.models import GridContent

class RawTextContent(GridContent):
content = models.TextField()

class Meta:
abstract = True

If you want to change the `render` method of the content type, be sure to call the `super` method to have the content wrapped with the tags:

from feincms_grid.models import GridContent

class MarkdownContent(GridContent):
content = models.TextField()

class Meta:
abstract = True
verbose_name = 'Markdown Text'

def render(self, *args, **kwargs):
t = Template(self.content)
c = Context({})
rendered = t.render(c)
rendered = markdown.markdown(rendered)
self.content = mark_safe(rendered)
return super(MarkdownContent, self).render(*args, **kwargs)

#####Templates

Use the `feincms_grid_render_region` tag to render regions in your templates.

{% extends 'base.html' %}
{% load feincms_page_tags feincms_grid_tags %}

{% block content %}
{% feincms_grid_render_region feincms_page "main" request %}
{% endblock %}

###Usage

Any content types which are subclasses of `GridContent` will have an extra dropdown at the top of them:

![usage preview](https://github.com/joshuajonah/feincms_grid/blob/master/feincms_grid.png)

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

feincms-grid-0.1.5.tar.gz (4.5 kB view details)

Uploaded Source

File details

Details for the file feincms-grid-0.1.5.tar.gz.

File metadata

  • Download URL: feincms-grid-0.1.5.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for feincms-grid-0.1.5.tar.gz
Algorithm Hash digest
SHA256 600511dfcd9976d7d8e2961eb345aed32b4ae5b3a39c12bc9a3ad145a7659898
MD5 bd88ece900d4dd9c12e03868e176cf77
BLAKE2b-256 76a3d3e91530d2928954e5bb9ebe0c3617195f19c2917ee46955b1743fb6ec9c

See more details on using hashes here.

Supported by

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