...
- Goal: Add UIO into a personal custom theme.
- Starting with a clone of https://github.com/inclusive-design/wordpress-fss-theme
- Identifying important UIO bits:
- functions.php
- header.php - includes and javascript blocks.
- there is a Table of Contents block for UIO ToC
- uio-markup.php
- copied the php block from UIO-WP functions.php into my own theme's functions.php
- copied the infusion directory from UIO-WP and pasted into theme's /library/ directory.
- pasted the linking of FSS style sheets and adjusted for paths:
...
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/infusion/framework/fss/css/fss-reset-global.css" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/infusion/framework/fss/css/fss-base-global.css" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/infusion/framework/fss/css/fss-layout.css" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/infusion/framework/fss/css/fss-text.css" />