Skip to content

Commit

Permalink
removed hardcoded ALA URL. 2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
djtfmartin committed Nov 9, 2017
1 parent 75d6107 commit 1b4d0e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AlaBootstrap3GrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.codehaus.groovy.grails.commons.GrailsApplication

class AlaBootstrap3GrailsPlugin {
// the plugin version
def version = "2.1.0-SNAPSHOT"
def version = "2.1.1"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "2.3 > *"
// resources that are excluded from plugin packaging
Expand Down
6 changes: 3 additions & 3 deletions grails-app/views/layouts/main.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="app.version" content="${g.meta(name:'app.version')}"/>
<meta name="app.build" content="${g.meta(name:'app.build')}"/>
<meta name="description" content="Atlas of Living Australia"/>
<meta name="author" content="Atlas of Living Australia">
<meta name="description" content="${grailsApplication.config.skin.orgNameLong ?: 'Atlas of Living Australia'}"/>
<meta name="author" content="${grailsApplication.config.skin.orgNameLong ?: 'Atlas of Living Australia'}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="${grailsApplication.config.skin?.favicon?:'http://www.ala.org.au/wp-content/themes/ala2011/images/favicon.ico'}" rel="shortcut icon" type="image/x-icon"/>

Expand All @@ -32,7 +32,7 @@
<div class="row">
<nav aria-label="Breadcrumb" role="navigation">
<ol class="breadcrumb-list">
<li><a href="https://www.ala.org.au/">Home</a></li>
<li><a href="${grailsApplication.config.ala.baseURL ?: 'https://www.ala.org.au'}">Home</a></li>
<g:if test="${pageProperty(name:'meta.breadcrumbParent')}">
<g:set value="${pageProperty(name:'meta.breadcrumbParent').tokenize(',')}" var="parentArray"/>
<li><a href="${parentArray[0]}">${parentArray[1]}</a></li>
Expand Down

0 comments on commit 1b4d0e8

Please sign in to comment.