Skip to content
Snippets Groups Projects
Select Git revision
  • bb7486d11a2e6321f85547b670fde54e5c4f0ea3
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2218-updateLinksToDocumentationPage
  • Issue/1913-ModificationsResourceMetadata
  • Sprint/2022-01
  • Hotfix/1911-fixFormatting
  • Sprint/2021-2022
  • Issue/912-rearrangeHeader
  • Sprint/2021-22
  • Issue/1743-changedLink
  • Issue/1659-makeViewCardsALink
  • Sprint/2021-15
  • Product/1573-ReadOnlyResources
  • x/linting
  • Topic/1595-IncludeReadonlyValueInResourcesApp
  • Topic/1531-UseMangmntTableView
  • Product/1548-projectInviteMngmnt
  • Sprint/2021-08
  • Hotfix/1475-projectCreateSpinner
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.0
  • v1.8.1
  • v1.8.0
  • v1.7.0
  • v1.6.2
  • v1.6.1
  • v1.6.0
  • v1.5.0
  • v1.4.1
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.1.1
  • v1.1.0
  • v1.0.0
41 results

Footer.vue

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Footer.vue 1.76 KiB
    <template>
      <footer id="footer">
        <div class="row container">
          <div id="servicecol" class="col-xs-12 col-sm-6">
            <div class="list-group">
              <h2>Service</h2>
              <a
                href="https://help.itc.rwth-aachen.de/service/7ab6210773b04ef28a1a8cb33628be67"
                class="list-group-item list-group-item-action"
                >{{ help }}</a
              >
              <a
                href="https://git.rwth-aachen.de/coscine/docs/public/terms/-/blob/master/PrivacyPolicy.md"
                class="list-group-item list-group-item-action"
                >{{ disclaimer }}</a
              >
              <a
                href="http://www.itc.rwth-aachen.de/cms/IT-Center/Footer/Service/~epvv/Impressum/"
                class="list-group-item list-group-item-action"
                >{{ imprint }}</a
              >
            </div>
          </div>
          <div id="contactcol" class="col-xs-12 col-sm-6">
            <div id="contact-list" class="list-group">
              <h2 id="footerContact">{{ contact }}</h2>
              <a id="mail" href="mailto:servicedesk@itc.rwth-aachen.de" class="list-group-item list-group-item-action">
                servicedesk@itc.rwth-aachen.de
              </a>
              <span id="phone" class="list-group-item">
                +49 241 / 80-24680
              </span>
              <span id="fax" class="list-group-item">
                +49 241 / 80-22981
              </span>
            </div>
          </div>
        </div>
      </footer>
    </template>
    
    <script lang="ts">
    export default {
      props: {
        help: {
          default: 'help',
          type: String,
        },
        disclaimer: {
          default: 'disclaimer',
          type: String,
        },
        imprint: {
          default: 'imprint',
          type: String,
        },
        contact: {
          default: 'contact',
          type: String,
        },
      },
    };
    </script>
    
    <style scoped></style>