Skip to content

Commit

Permalink
*8094* CSS standardization (ugh); production template
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Jan 31, 2013
1 parent 79b7d19 commit 3119b18
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
6 changes: 6 additions & 0 deletions styles/lib.css
Expand Up @@ -11,6 +11,12 @@
* a particularly attractive idea.
*/

/* OOCSS - http://github.com/stubbornella/oocss */

@import url("../lib/pkp/styles/lib/oocss/libraries.css");

@import url("../lib/pkp/styles/lib/oocss/grids.css");

/**
* The following libraries are compilable but compiling throws image paths off.
*/
Expand Down
29 changes: 29 additions & 0 deletions templates/management/settings/distribution.tpl
@@ -0,0 +1,29 @@
{**
* templates/management/settings/distribution.tpl
*
* Copyright (c) 2003-2012 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* The distribution process settings page.
*}

{strip}
{assign var="pageTitle" value="navigation.distributionProcess"}
{include file="common/header.tpl"}
{/strip}

<script type="text/javascript">
// Attach the JS file tab handler.
$(function() {ldelim}
$('#distributionTabs').pkpHandler(
'$.pkp.controllers.TabHandler');
{rdelim});
</script>
<div id="distributionTabs">
<ul>
<li><a href="{url router=$smarty.const.ROUTE_COMPONENT component="tab.settings.DistributionSettingsTabHandler" op="showTab" tab="indexing"}">{translate key="manager.distribution.indexing"}</a></li>
<li><a href="{url router=$smarty.const.ROUTE_COMPONENT component="tab.settings.DistributionSettingsTabHandler" op="showTab" tab="paymentMethod"}">{translate key="manager.paymentMethod"}</a></li>
</ul>
</div>

{include file="common/footer.tpl"}

0 comments on commit 3119b18

Please sign in to comment.