Skip to content

This recipe demonstrates how to use basic types of Abe

Notifications You must be signed in to change notification settings

abecms/recipe-abetypes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ace4176 · Aug 31, 2017

History

8 Commits
Jan 26, 2017
Jan 26, 2017
Aug 31, 2017
Jan 26, 2017

Repository files navigation

recipe-abe-types

This recipe demonstrates how to use basic types of Abe

Installation

Description

In this recipe, you'll see how to use th basic types of Abe:

  • text
  • textarea
  • rich
  • link
  • image
  • file

file

Create a content based on the template file.html

Screenshot

You can chose what types of content you can upload in your abe blog. To authorize a content type, you'll have to edit you abe.json config and update the upload section.

"upload": {
  "document": "my_documents",
  "extensions":[".gif", ".jpg", ".jpeg", ".png", ".svg", ".mp4", ".pdf"],
  "mimetypes": ["image/gif", "image/jpeg", "image/png", "image/svg+xml", "video/mp4", "application/pdf"]
}

In this example, we've configured the directory "my_documents" which will host the uploaded documents (those which are not images nor movies nor sound).

And we've put the authorized extensions and authorized mimetypes. This section of the configuration file is what you'll have to update if you want to add a new authorized file type.

The template itself is quite self-explanatory:

<!DOCTYPE html>
<html>
<head>
  <title>File type</title>
</head>
<body>
{{abe type='file' key='file_key' desc='Upload your file' reload='true' visible='false'}}

{{#if file_key}}
  This file has been uploaded : {{file_key}}
{{/if}}
</body>
</html>

We hide the type='file' (visible='false') and reload it (reload='true') once the contributor has uploaded her file. Line 48, if a file has been succesfully uploaded, we display the sentence "This file has been ..."

A future release will add a new attribute "filetypes" that will give you more power: You'll be able to choose which extension you want to authorize tag by tag.

About

This recipe demonstrates how to use basic types of Abe

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages