Repository: airavata-php-gateway Updated Branches: refs/heads/develop 2f41e27d1 -> d8cb5603c
Adding Base theme changes to Airavata PGA. Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/5edae07a Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/5edae07a Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/5edae07a Branch: refs/heads/develop Commit: 5edae07a570be26d45cd7679d1c3ff0ab2dbca23 Parents: e338c82 Author: Nipurn Doshi <[email protected]> Authored: Sat May 27 18:42:42 2017 -0700 Committer: Nipurn Doshi <[email protected]> Committed: Sat May 27 18:42:42 2017 -0700 ---------------------------------------------------------------------- public/themes/base/partials/about.blade.php | 0 .../base/partials/documentation.blade.php | 0 public/themes/base/partials/header.blade.php | 45 ++++++++++++++++++++ 3 files changed, 45 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/5edae07a/public/themes/base/partials/about.blade.php ---------------------------------------------------------------------- diff --git a/public/themes/base/partials/about.blade.php b/public/themes/base/partials/about.blade.php new file mode 100644 index 0000000..e69de29 http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/5edae07a/public/themes/base/partials/documentation.blade.php ---------------------------------------------------------------------- diff --git a/public/themes/base/partials/documentation.blade.php b/public/themes/base/partials/documentation.blade.php new file mode 100644 index 0000000..e69de29 http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/5edae07a/public/themes/base/partials/header.blade.php ---------------------------------------------------------------------- diff --git a/public/themes/base/partials/header.blade.php b/public/themes/base/partials/header.blade.php index e69de29..15fd52a 100644 --- a/public/themes/base/partials/header.blade.php +++ b/public/themes/base/partials/header.blade.php @@ -0,0 +1,45 @@ +<title>PGA for Science Gateways</title> + +<link media="all" type="text/css" rel="stylesheet" href="{{ URL::to('/') }}/themes/{{Session::get('theme')}}/assets/css/style.css"/> + + <nav class="nav navbar-default"> + + <div class="container-fluid"> + <!-- Brand and toggle get grouped for better mobile display --> + <div class="navbar-header page-scroll" id="home"> + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> + <span class="sr-only">Toggle navigation</span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + <span class="icon-bar"></span> + </button> + <a class="navbar-brand page-scroll" href="{{ URL::to('/') }}/home"> + PHP Gateway + </a> + </div> + + <!-- Collect the nav links, forms, and other content for toggling --> + <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> + <ul class="nav navbar-nav navbar-right"> + <li class="hidden"> + <a href="#page-top"></a> + </li> + <li> + <a class="page-scroll" href="{{URL::to('/')}}/pages/documentation">Documentation</a> + </li> + <li> + <a class="page-scroll" href="{{URL::to('/')}}/pages/about">About</a> + </li> + <li> + <a class="page-scroll" href="{{URL::to('/')}}/#contact-scigap">Contact</a> + </li> + <!-- + <li> + <a class="page-scroll btn btn-primary" href="#collaborators">Get Access</a> + </li> + --> + </ul> + </div> + <!-- /.navbar-collapse --> + </div> +</nav> \ No newline at end of file
