Skip to content
Snippets Groups Projects
current-work.html 3.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • ---
    title: Current work
    ---
    <h1>{{ page.title }}</h1>
    
    The current work is organised either in <a href="#gotosig">special interest groups</a>, which are spontaneous activities among the group or in <a href="#gotoprojects">projects</a>, which are funded by third-parties and have their own processes.
    
    <h1 id="gotosig">Special interest groups</h1>
    Following the <a href="https://rd-alliance.org/groups/interest-groups">RDA model</a>, WG3 work is organised in Special Interest Groups or SIGs. A SIG is a group of people from different PaN facilities, working together on a particular topic of common interest. The SIGs have defined targets and report progress back to the WG3 meetings. 
    
    The current list of SIGs is the following:
    
      <ul>
        {% for sig in site.data.sigs %}
          {% assign uniqid = sig.name | split: " " | join: "-" %}
          <li><a href="#{{ uniqid }}">{{ sig.name }}</a></li>
        {% endfor %}
      </ul>
    
    {% for sig in site.data.sigs %}
      {% assign uniqid = sig.name | split: " " | join: "-" %}
    
      <h2 id="{{uniqid}}">{{ sig.name }} {% if sig.status %}<span class="sticker" style="float: right">{{ sig.status }}</span>{% endif %}</h2>
      {% if sig.chairs %}<h3>Chair(s): {{ sig.chairs }}</h3>{% endif %}
    
      <div id="sig-content">
        <ul>
          <li>{% if sig.mandate %}<strong>Mandate:</strong> {{ sig.mandate }}<br>{% endif %}</li>
          <li>{% if sig.mail %}<strong>Mailing list:</strong> <a href="mailto:{{ sig.mail }}">{{ sig.mail }}</a><br>{% endif %}</li>
          {% if sig.list-name %}
            <li><span class="caret"><strong>How to subscribe</strong></span> 
            <ol class="toggled">
              <li>Send a message to <a href="mailto:sympa@desy.de">sympa@desy.de</a> from the adress you want to subscribe to the list.</li>
              <li>In the subject line of your message, type in: <b>subscribe {{ sig.list-name }} Firstname Name</b> (indicate your own name)</li>
              <li>Leave the message body blank.</li>
            </ol></li>
            <li><span class="caret"><strong>How to unsubscribe</strong></span>
            <ol class="toggled">
              <li>From the address with which you subscribed to the list, send a message to <a href="mailto:sympa@desy.de">sympa@desy.de</a>.</li>
              <li>In the subject line of your email, type in: <b>unsubscribe {{ sig.list-name }}</b>.</li>
              <li>Leave the message body blank.</li>
            </ol></li>
          {% endif %}
        </ul>
        </div>
    
      
    {% endfor %}
    
    
    <h1 id="gotoprojects">Current projects</h1>
    The projects in which members of our group are or have been involved are listed in the following table:
    <table>
      <tr>
        <th>Project</th>
        <th>Teaser</th>
        <th>Partners</th>
        <th>Outcomes</th>
      </tr>
        {% for project in site.data.projects %}
          <tr>
            <td>
    
              <a href="https://doi.org/{{ project.grantDoi }}">{{ project.acronym }}</a> ({{ project.startDate | date: "%Y" }} - {{ project.endDate | date: "%Y" }})
    
            </td>
            <td class="justify">{{ project.teaser }}</td>
            <td class="nowrap">
              <ul>
                {% assign participants = site.data.facilities | where:"projects",project.acronym %}
                {% for participant in participants %}
                  <li>{{ participant.short-name }}</li>
                {% endfor %}
              </ul>
            </td>
            <td class="nowrap">
              <ul>
                {% assign p-outcomes = site.data.outcomes | where:"project",project.acronym %}
                {% for p-outcome in p-outcomes %}
                  <li><a href="{{ '../outcomes.html#' | append: p-outcome.short-name | relative-url }}">{{ p-outcome.short-name }}</a></li>
                {% endfor %}
              </ul>
            </td>
          </tr>
        {% endfor %}
      
    </table>