summaryrefslogtreecommitdiff
path: root/app/views/content
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-23 18:04:37 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-23 18:04:37 +0200
commit6424e10be5a89f175a74c71c55660412a169b8b8 (patch)
treeae8c8111bd1e8c6e82c0a5f9a2c4b088c92bafe5 /app/views/content
parent375ed745052148faeb34763087fe04214105f1b8 (diff)
Update deployed state to what's currently running
Diffstat (limited to 'app/views/content')
-rw-r--r--app/views/content/_featured_articles.html.erb6
-rw-r--r--app/views/content/_main_navigation.html.erb6
-rw-r--r--app/views/content/_search.html.erb9
-rw-r--r--app/views/content/_tags.html.erb4
4 files changed, 8 insertions, 17 deletions
diff --git a/app/views/content/_featured_articles.html.erb b/app/views/content/_featured_articles.html.erb
index 0220abb..c69911f 100644
--- a/app/views/content/_featured_articles.html.erb
+++ b/app/views/content/_featured_articles.html.erb
@@ -11,7 +11,7 @@
11 11
12 <%= link_to( 12 <%= link_to(
13 image_tag( 'chaosradio.png' ), 13 image_tag( 'chaosradio.png' ),
14 "http://chaosradio.ccc.de/", 14 "https://chaosradio.ccc.de/",
15 :id => "chaosradio_icon", 15 :id => "chaosradio_icon",
16 :title => "Chaosradio" 16 :title => "Chaosradio"
17 )%> 17 )%>
@@ -25,14 +25,14 @@
25 25
26 <%= link_to( 26 <%= link_to(
27 image_tag( 'ds.png' ), 27 image_tag( 'ds.png' ),
28 "http://ds.ccc.de/", 28 "https://ds.ccc.de/",
29 :id => "ds_icon", 29 :id => "ds_icon",
30 :title => "Datenschleuder" 30 :title => "Datenschleuder"
31 )%> 31 )%>
32 32
33 <%= link_to( 33 <%= link_to(
34 image_tag( 'events.png' ), 34 image_tag( 'events.png' ),
35 "http://events.ccc.de/", 35 "https://events.ccc.de/",
36 :id => "events_icon", 36 :id => "events_icon",
37 :title => "Events Blog" 37 :title => "Events Blog"
38 )%> 38 )%>
diff --git a/app/views/content/_main_navigation.html.erb b/app/views/content/_main_navigation.html.erb
index a984512..2fe8b77 100644
--- a/app/views/content/_main_navigation.html.erb
+++ b/app/views/content/_main_navigation.html.erb
@@ -3,11 +3,5 @@
3 <% menu_items.each do |item| %> 3 <% menu_items.each do |item| %>
4 <li><%= link_to_path item.title, item.path %></li> 4 <li><%= link_to_path item.title, item.path %></li>
5 <% end %> 5 <% end %>
6 <li>
7 <%= language_selector %>
8 </li>
9 <li id="light-mode-li">
10 <input id="light-mode" type="checkbox" /><label for="light-mode">lights on</label>
11 </li>
12 </ul> 6 </ul>
13</div> 7</div>
diff --git a/app/views/content/_search.html.erb b/app/views/content/_search.html.erb
index 9f61042..e654462 100644
--- a/app/views/content/_search.html.erb
+++ b/app/views/content/_search.html.erb
@@ -1,8 +1,3 @@
1<% form_tag search_path, :method => 'get' do %> 1<% form_tag search_path, :method => 'get' do %>
2<table> 2 <div><%= text_field_tag :search_term, params[:search_term], :placeholder => 'suchen', :type => 'search' %></div>
3 <tr> 3<% end %>
4 <td><%= text_field_tag :search_term, params[:search_term] %></td>
5 <td style="padding-top: 2px"><%= image_submit_tag("search_button.png") %></td>
6 </tr>
7</table>
8<% end %> \ No newline at end of file
diff --git a/app/views/content/_tags.html.erb b/app/views/content/_tags.html.erb
index d33bc10..fd808b6 100644
--- a/app/views/content/_tags.html.erb
+++ b/app/views/content/_tags.html.erb
@@ -1,3 +1,4 @@
1<% unless @page.tags.empty? %>
1<div id="tags"> 2<div id="tags">
2 <h2>Tags</h2> 3 <h2>Tags</h2>
3 <ul class="teasertext"> 4 <ul class="teasertext">
@@ -5,4 +6,5 @@
5 <li><%= link_to tag.name, tag_path(:id => tag.name) %></li> 6 <li><%= link_to tag.name, tag_path(:id => tag.name) %></li>
6 <% end %> 7 <% end %>
7 </ul> 8 </ul>
8</div> \ No newline at end of file 9</div>
10<% end %>