Skip to content

Commit

Permalink
Merge pull request #675 from aholachek/my-orcid
Browse files Browse the repository at this point in the history
more orcid additions
  • Loading branch information
aholachek committed Nov 11, 2015
2 parents 834bca7 + ec6d95f commit 86fec5e
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/js/wraps/orcid_page_manager/orcid-page-layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<div class="row s-stable-search-bar-height">
<div class="s-search-bar-full-width-container">
<div class="col-sm-7 col-md-7 col-sm-offset-2 s-search-bar-row" id="search-bar-row"
data-widget="SearchWidget">
</div>
</div>
</div>
<div class="row s-results-control-row-container">
<div class="col-sm-8 col-sm-offset-1" style="padding-left:8%;">
<!--static orcid info-->
<h3> <img src="../../styles/img/orcid-active.svg" alt="the ORCID logo"/> Thanks for signing in to ORCID</h3>
<p>
Eventually, we will integrate your claim data into our search results, improving access to your papers in the ADS.
</p>
<p>
For users with an ADS account, we plan to offer additional functionality like a public
metrics report and personalized notifications and recommendations.
</p>
<br/>


</div>
</div>
<div class="row s-darker-background">
<div class="col-sm-10 col-sm-offset-1 s-main-content-container" style="margin-top:20px;">
<div data-widget="OrcidBigWidget"/>
</div>
</div>
21 changes: 21 additions & 0 deletions src/js/wraps/orcid_page_manager/orcid_page_manager.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
define([
'js/page_managers/controller',
'js/page_managers/one_column_view',
'hbs!./orcid-page-layout'
], function (
PageManagerController,
PageManagerView,
PageManagerTemplate) {

var PageManager = PageManagerController.extend({

createView: function(options) {
options = options || {};
options.template = PageManagerTemplate;
return new PageManagerView({template: PageManagerTemplate, className : "s-orcid-layout", id : "orcid-page-layout" })
}
});

return PageManager;

});

0 comments on commit 86fec5e

Please sign in to comment.