diff --git a/assets/style/base/typography.css b/assets/style/base/typography.css index beed2b2fc..3ee0baed0 100644 --- a/assets/style/base/typography.css +++ b/assets/style/base/typography.css @@ -57,7 +57,11 @@ h6, } a { - color: black; + color: black +} + +a:hover { + text-decoration: none; } @media (max-device-width: 768px),(width <= 768px){ diff --git a/assets/style/sections/footer.css b/assets/style/sections/footer.css index 2e89db5c8..380f8587d 100644 --- a/assets/style/sections/footer.css +++ b/assets/style/sections/footer.css @@ -18,6 +18,10 @@ footer * { text-decoration: none; } +footer a:hover { + text-decoration: none; +} + .footer-container { max-width: 1400px; margin: auto; diff --git a/layouts/_bioc_views_package_detail.html b/layouts/_bioc_views_package_detail.html index fa669400c..29f27b256 100644 --- a/layouts/_bioc_views_package_detail.html +++ b/layouts/_bioc_views_package_detail.html @@ -1,70 +1,50 @@ -

<%=@package[:Package]%>

- -
- <% if @package.has_key? :PackageStatus and @package[:PackageStatus] == "Deprecated" %> - -

This package is deprecated. It will probably - be removed from Bioconductor. Please refer to - the - package end-of-life guidelines for more information. -

- + + <% if @package[:biocViews] %> + + + + <% end %> - <%= get_fragment(@package, @item, @item_rep) %> - - <%# package title - not to be confused with page title %> - -

<%= @package[:Title]%>

- - <%= render("/components/packages/badges/", :package => @package) %> -


- -
- -

- Bioconductor version: <%= verbose_bioc_version(@package) %> -

-

- <%= @package[:Description] %> -

-

- Author: <%= filter_emails(@package[:Author])%> -

-

- Maintainer: <%= filter_emails(@package[:Maintainer])%> -

- - + <% if @package[:Version] %> +
+ + + + <% end %> -
- Citation (from within R, enter citation("<%=@package[:Package]%>")): -
-
-
- Seminal Bioconductor project articles: -
-

Huber W, Carey VJ, Gentleman R, Anders S, Carlson M, Carvalho BS, - Bravo HC, Davis S, Gatto L, Girke T, Gottardo R, Hahne F, Hansen KD, Irizarry RA, - Lawrence M, Love MI, MacDonald J, Obenchain V, Oleś AK, Pagès H, Reyes A, Shannon P, - Smyth GK, Tenenbaum D, Waldron L, Morgan M (2015). "Orchestrating high-throughput - genomic analysis with Bioconductor." Nature Methods, 12(2), - 115–121. doi:10.1038/nmeth.3252.

-

Gentleman RC, Carey VJ, Bates DM, Bolstad B, Dettling M, Dudoit S, - Ellis B, Gautier L, Ge Y, Gentry J, Hornik K, Hothorn T, Huber W, Iacus S, Irizarry R, - Leisch F, Li C, Maechler M, Rossini AJ, Sawitzki G, Smith C, Smyth G, Tierney L, Yang JYH, - Zhang J (2004). "Bioconductor: open software development for computational biology and - bioinformatics." Genome Biology, 5(10), R80. - doi:10.1186/gb-2004-5-10-r80.

-
-
- + <% if @package[:Date] %> + + + + + <% end %> + <% if @package[:"In Bioconductor since"] %> + + + + + <% end %> + <% if @package[:License] %> + + + + + <% end %> - <%= render("/components/packages/installation/", :package => @package) %> - <%= render("/components/packages/documentation/", :package => @package) %> - <%= render("/components/packages/details/", :package => @package) %> - <%= render("/components/packages/archives/", :package => @package) %> - + <% if @package[:URL] %> + + + + + <% end %> + <% if @package[:BugReports] %> + + + + + <% end %> +
biocViews<%= @package[:biocViews] %>
Version<%= @package[:Version] %>
Date<%= @package[:Date] %>
In Bioconductor since<%= @package[:"In Bioconductor since"] %>
License<%= @package[:License] %>
URL<%= @package[:URL] %>
BugReports<%= @package[:BugReports] %>
diff --git a/lib/helpers.rb b/lib/helpers.rb index cc79c50ba..968821326 100644 --- a/lib/helpers.rb +++ b/lib/helpers.rb @@ -455,7 +455,7 @@ def top_events(events) end toplist = sorted[-5..-1] toplist.reverse -end +end def event_date(e) if (e[:start].month == e[:end].month)