A long-lived project that still receives updates
Pageflow page type for a page that contains customizable link areas
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0, < 3
~> 2.13
>= 15.0, < 18
~> 12.0
~> 1.0
~> 1.3
~> 0.7.1
~> 1.0

Runtime

 Project Readme

Pageflow Linkmap Page

Gem Version Build Status

Page type to display customizable link areas to internal/external pages and inline audio players.

Installation

Add this line to your application's Gemfile:

gem 'pageflow-linkmap-page'
gem 'pageflow-external-links' # needed to copy the migration contained within

Register the page type inside the configure block in config/initializers/pageflow.rb

Pageflow.configure do |config|
  config.plugin(Pageflow::LinkmapPage.plugin)
end

Include javascripts and stylesheets:

# app/assets/javascripts/pageflow/application.js
//= require pageflow/linkmap_page

# app/assets/javascripts/pageflow/editor.js
//= require pageflow/linkmap_page/editor

# app/assets/stylesheets/pageflow/application.scss
@import "pageflow/linkmap_page";

# app/assets/stylesheets/pageflow/editor.scss
@import "pageflow/linkmap_page/editor";

Import default theme additions:

# app/assets/stylesheets/pageflow/themes/default.scss

@import "pageflow/linkmap_page/themes/default";

/* Display arrows left and right to indicate panorama */
@import "pageflow/linkmap_page/themes/default/scroll_indicators";

Install dependencies:

bundle install

Install and run migrations:

$ rake pageflow_linkmap_page:install:migrations
$ rake db:migrate

Then follow the installation instructions for the pageflow-external-links gem.

Restart the application server and enable the corresponding page type feature for entries in the tab features.

Troubleshooting

If you run into problems while installing the page type, please also refer to the Troubleshooting wiki page in the Pageflow repository. If that doesn't help, consider filing an issue.

Contributing Locales

Edit the translations directly on the pageflow-linkmap-page locale project.