First event (layout incomplete)
This commit is contained in:
parent
06b57577e3
commit
598673558a
3 changed files with 48 additions and 1 deletions
26
content/events/201302-sammeln-von-grossrechnern/index.md
Normal file
26
content/events/201302-sammeln-von-grossrechnern/index.md
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
kind: event
|
||||||
|
startdate: 2003-02-14 19:30
|
||||||
|
duration: 2h
|
||||||
|
title: "Über die besonderen Anforderungen beim Sammeln von historischen Großrechnern"
|
||||||
|
speakers:
|
||||||
|
-
|
||||||
|
name: Wolfgang Stief
|
||||||
|
affiliaton: GUUG München
|
||||||
|
location:
|
||||||
|
location: bib
|
||||||
|
details: Max-Bense-Forum (UG)
|
||||||
|
---
|
||||||
|
An zahlreichen Beispielen des Projekts [Cray-Cyber.org](http://cray-cyber.org) und der
|
||||||
|
datArena zeige ich die besonderen Herausforderungen beim Sammeln von
|
||||||
|
Großrechnern und den aktuellen Stand der Ausstellung. Eine
|
||||||
|
Bildergeschichte mit Erzähler.
|
||||||
|
|
||||||
|
<!--break-->
|
||||||
|
|
||||||
|
# Materialien
|
||||||
|
|
||||||
|
* [Folien](http://dl.dropbox.com/u/4761451/cray-cyber_slides.pdf)
|
||||||
|
* [Bilder](http://dl.dropbox.com/u/4761451/cray-cyber_bilder.zip)
|
||||||
|
* [Audio-Mitschnitt](http://www1.stuttgart.de/stadtbibliothek/druck/audio/cccs/cccs_audio.php#40)
|
||||||
|
|
||||||
21
layouts/event_body.html
Normal file
21
layouts/event_body.html
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
<div class="row">
|
||||||
|
<div class="span8">
|
||||||
|
<div class="row">
|
||||||
|
<div class="span8">
|
||||||
|
<h1><%= item[:title] %></h1>
|
||||||
|
<%= yield %>
|
||||||
|
</div>
|
||||||
|
<% latest_articles_referred_to(item.identifier).each do |item| %>
|
||||||
|
<div class="span8">
|
||||||
|
<%= render 'item_intro', :item => item, :extended => true %>
|
||||||
|
<p>
|
||||||
|
<a itemprop="blogPost" href="<%= item.path() %>">Zum Artikel</a>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="span4">
|
||||||
|
<div id="sidebar"></div>
|
||||||
|
<script type="text/javascript">$("#sidebar").load("/sidebar/index.html");</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
@ -45,6 +45,6 @@ def latest_articles_referred_to(refers_to, max=nil)
|
||||||
p.attributes[:kind]=='article' && p.attributes[:refers_to] && sanitize_path(p.attributes[:refers_to])==refers_to
|
p.attributes[:kind]=='article' && p.attributes[:refers_to] && sanitize_path(p.attributes[:refers_to])==refers_to
|
||||||
end.sort do |a, b|
|
end.sort do |a, b|
|
||||||
a.attributes[:created_at] <=> b.attributes[:created_at]
|
a.attributes[:created_at] <=> b.attributes[:created_at]
|
||||||
end.reverse[0..(max ? max-1 : @cache_latest_art.length-1)]
|
end.reverse[0..(max ? max-1 : -1)]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue