Page MenuHomeGRNET

No OneTemporary

File Metadata

Created
Fri, Aug 8, 8:44 PM
diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css
index b0e1d28..4626336 100644
--- a/app/assets/stylesheets/application.css
+++ b/app/assets/stylesheets/application.css
@@ -1,92 +1,106 @@
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require bootstrap.min
*= require jstree-default
*= require bootstrap-chosen
*= require dataTables.bootstrap.min
*= require jquery.timepicker.min
*= require_tree .
*= require_self
*/
/* Make sure navbar does not overlay body */
body {
padding-top: 70px;
}
.right {
text-align: right;
margin-right: 0px;
float: right;
}
+footer.footer {
+ position: fixed;
+ width: 100%;
+ background-color: #F7F7F7;
+ color: #b4b4bf;
+ text-align: center;
+ padding-top: 5px;
+ bottom: 0px;
+}
+
+.footer a {
+ color: #08c;
+}
+
.graybox {
max-width: 500px;
margin-right: 0;
margin-left: 0;
background-color: #F7F7F9;
margin-bottom: 30px;
}
.graybox form {
padding-top: 30px;
}
#_days_back {
margin: auto 10px;
}
tr.fatal > td {
background-color: #EA7272;
}
tr.fatal > td {
background-color: #EA7272;
}
li.logo {
}
li.logo > a {
padding-left: 60px;
background: url('/images/logo.png') no-repeat scroll 4px 5px;
padding-top: 5px;
padding-bottom: 5px;
}
li.logo > a > p {
font-size: 13px;
margin-bottom: 0;
color: #333333px;
}
.jstree-closed > a > i.jstree-checkbox,
.jstree-open > a > i.jstree-checkbox
{ display: none; }
.datatable-wrapper {
margin-bottom: 20px;
}
.faq-link > svg {
visibility: hidden;
}
.time-selects {
width: 47%;
display: inline-block;
}
h2:hover > a.faq-link > svg {
visibility: visible;
}
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index 182d917..fcce78f 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -1,34 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Archiving</title>
<%= stylesheet_link_tag 'application', media: 'all' %>
<!--[if lt IE 9]>
<%= javascript_include_tag 'html5shiv.min' %>
<![endif]-->
<%= javascript_include_tag 'application' %>
<%= csrf_meta_tags %>
</head>
<body>
<%= render "shared/nav" %>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<%= flash_messages %>
<%= yield %>
<% if current_user %>
<script type="text/javascript"
src="https://tts.grnet.gr/jira/s/0d8377abaee87897fb536fce0d7ee820-T/en_US-xvtzbt/6346/19/1.4.16/_/download/batch/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector.js?locale=en-US&collectorId=7e9ca8be">
</script>
<% end %>
</div> <!-- /layout-col -->
</div> <!-- /layout-row -->
</div> <!-- /container -->
+ <%= render 'shared/footer' %>
</body>
</html>
diff --git a/app/views/shared/_footer.html.erb b/app/views/shared/_footer.html.erb
new file mode 100644
index 0000000..6a87bbd
--- /dev/null
+++ b/app/views/shared/_footer.html.erb
@@ -0,0 +1,21 @@
+<footer class="footer">
+ <div class="footer">
+ <p>
+This is a service provided by
+ <a target="_blank" href="http://noc.grnet.gr">GRNET NOC</a> |
+ <a target="_blank" href="//facebook.com/noc.grnet.gr">
+ <img src="/images/fb.png"></img>
+ </a> |
+ <a target="_blank" href="//twitter.com/grnetnoc">
+ <img src="/images/tw.png"></img>
+ </a> |
+ <a href="/faq">
+ FAQ
+ </a>
+ </p>
+ <p>
+ <iframe width="500" height="50" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" align="middle" src="https://dido.grnet.gr/logos/index.html"></iframe>
+ </p>
+ </div>
+</footer>
+
diff --git a/public/images/fb.png b/public/images/fb.png
new file mode 100644
index 0000000..73d0409
Binary files /dev/null and b/public/images/fb.png differ
diff --git a/public/images/tw.png b/public/images/tw.png
new file mode 100644
index 0000000..ea9f360
Binary files /dev/null and b/public/images/tw.png differ

Event Timeline