Warning, /epic.github.io/README.md is written in an unsupported language. File is not indexed.
0001 # The ePIC website
0002
0003 ## About
0004 This is the future home of the ePIC collaboration website. It is in early stages of development.
0005 Suggestions are welcome.
0006
0007 ## Current work items
0008
0009 Fill out the required pages. Please contact T.Ullrich for details.
0010
0011
0012 ### New features
0013
0014 WG descriptions are now kept in the file _wg.yml_ in the *_data_* folder
0015
0016 ### Content recently updated:
0017 * Committees -- _Conferences and Talks_ updated
0018 * Physics
0019 * _Semi-Inclusive_
0020 * _Exclusive and Diffraction_
0021 * _Jets and HF_
0022 * _BSM and EW_
0023
0024 * Keywords (a stub)
0025
0026 ### Filtering
0027
0028 Work in progress, examples:
0029 ```
0030 {% assign nominations=site.data.keywords | where_exp: "item", "item.category=='conference'" | where_exp: "item", "item.year==2024" %}
0031
0032 {% comment %}
0033 {% assign nom= nom | where: "nominations" %}
0034 {% endcomment %}
0035
0036 {% for nom in nominations %}
0037 {% if nom.nominations %}
0038 {{ nom.nominations.name }}
0039
0040 {% endif %}
0041 {% endfor %}
0042 ```
0043
0044