Go to file
jorge d90e95fe23 Merge pull request 'make lines 100% screen width in collections view' (#68) from develop into main
Reviewed-on: #68
2022-05-03 10:35:16 +02:00
asset make lines 100% screen width in collections view 2022-05-03 10:32:25 +02:00
config changed version number 2021-07-05 12:47:23 +02:00
view merged dev and changed call into import of wp menu to use the https://arc-hive.zone url 2022-04-29 10:07:31 +02:00
.gitattributes css after merge with fix/button-sizes 2021-07-28 13:10:35 +02:00
.gitignore changed gitignore 2022-03-22 19:50:55 +01:00
CHANGELOG.md mods for a cleaner theme 2021-06-09 16:54:24 +02:00
README.md adds config, and config instructions. 2022-03-25 10:58:33 +01:00
gulpfile.js mods in gulpfile so `npm start` will track all .scss files inside `assets/scss` 2021-07-15 17:36:47 +02:00
index.html added image background in conllections-all 2022-04-28 18:57:34 +02:00
package-lock.json spaced menu smallscreen view 2022-03-01 16:36:34 +01:00
package.json changed version number 2021-07-05 12:47:23 +02:00
theme.jpg mods for a cleaner theme 2021-06-09 16:54:24 +02:00

README.md

Arc-hive omeka theme

This is the Arc-hive development theme based on Omeka S theme based on [Omeka Foundation S theme].

dev site

https://dev-archive.hangar.org/

designs omeka

We are trying to accomplish this design for the OmekaS system

https://www.figma.com/file/HruKRRVPgfAgSgs8HihI2w/ARCHIVE-WEB-04?node-id=274%3A0

Installation

For basic out-of-the-box use of the theme, follow the Omeka S User Manual instructions for installing themes.

cd themes
git clone https://git.hangar.org/arcHIVE-tech/Arc-hive-omeka-theme.git archive
cd archive
git checkout arc-hive-v01
chown -R www-data:www-data ./

to update changes

cd themes/archive
git pull
chown -R www-data:www-data ./

Arc-hive theme notes

Configure

The main menu can be retrieved from a wordpress site and rendered. To configure this, edit view/common/wordpress-menu.phtml. Optional.

# Config
$wordpress_site="https://my.wordpress.site";
$wordpress_endpoint="https://my.wordpress.site/wp-json/menus/v1/menus/4";

For more advanced use, such as customizing the theme with Sass, you'll need to install the tools with NodeJS (0.12 or greater). Navigate to your theme directory and run npm install.

Theme Configuration

  • Stylesheet: The theme provides 4 style options.
    • Default uses ZURB Foundation's default styles for prototyping, which are all viewable in their documentation under the Kitchen Sink.
    • Revolution aims to capture the feel of old documents and juxtaposes it with a bright red accent. It includes a textured paper background image.
    • Sea Foam offers a clean, friendly look with a teal palette.
    • Inkwell features a high contrast serif family for its typography, as well as sunny yellow accents.
  • Navigation layouts: Global navigation can display as a horizontal top bar with optional dropdown menus or a left vertical column.
  • Show Top Navigation Child Pages: Toggle display of child pages within the main navigation.
  • Top Navigation Depth: If the main navigation is set to display child pages, this setting controls how many navigation levels to display. Setting this to '0' shows all levels.
  • Logo: Upload an image asset to use as a logo in place of a text site title.
  • Footer Content: Control what appears in the footer. This field takes HTML markup.
  • Layout for Browse Pages: Select how to display items within their "browse" views.
    • Grid: Items are organized into rows and columns. This is recommended for items that prominently feature images.
    • List: Items are stacked into a single column.
    • Toggle (default: grid): Site visitors can choose to display the browse views as grids or lists, and grids are the default.
    • Toggle (default: list): Site visitors can choose to display the browse views as grids or lists, and lists are the default.
  • Layout for Show Pages: Resource metadata can show display as stacked with properties as headings above their values, or inline with properties as headings inline with their values.

Customizing the Theme

CSS classes

Arc-hive projecct css classes will start with arc- as ex: arc-my-class-name

Sass Tasks

Run these commands within the theme's root directory.

  • npm start: While this task runs, it watches for changes to sass files and recompiles the CSS.
  • gulp sass: This is the one-off task for compiling the current Sass/CSS.

Sass File Structure

Foundation S comes with the Default theme, as well as 3 other customized stylesheets that were built on top of Default. The "Sea Foam" theme has the fewest overrides and is thus the easiest reference for a custom theme model.

/asset/sass/seafoam.scss

@charset 'utf-8';

@import 'globals-default';
@import 'globals-seafoam';
@import 'settings';

// Sea Foam Settings

$topbar-background: $primary-color;

$thumbnail-border: 4px solid $secondary-color;
$thumbnail-shadow: none;
$thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);

$button-background: $secondary-color;
$button-color: $primary-color;

@import 'foundation-core';
@import 'omeka';

header a {
  color: $white;
}

Much of the customizability within the theme lies in managing its settings variables. ZURB Foundation's default global variables from their original _settings.scss all sit in _globals-default.scss. Many of these variables are used throughout the rest of _settings.scss, so it was necessary to separate them out into their own file if the theme writer wants to set their own global variables. Here all the overrides live in _globals-seafoam.scss, and so all overridden values will be appropriately updated for use throughout the rest of _settings.scss.

Any non-global setting variable overrides should come after the import for _settings.scss and before their usagee in the rule files, _foundation-core.scss, and _omeka.scss.

ZURB Foundation's default style rules are all managed in _foundation-core.scss. All style rules specific to Omeka S are contained within _omeka.scss.

After all those imports come all style rules specific to the theme.