Difference between revisions of "Contact.rythm"

From BITPlan Wiki
Jump to navigation Jump to search
Line 101: Line 101:
 
   }
 
   }
 
}
 
}
 +
  <a class='logo' href='http://training.bitplan.com/index.php/Willkommen'>
 +
          <img src='http://wiki.bitplan.com/images/wiki/7/7a/BITPlanLogo2012FontLess.svg' width='100%'>
 +
        </a>
 
     </header>
 
     </header>
 
     <section class="container">
 
     <section class="container">

Revision as of 18:19, 2 November 2017

Links

Source

@// Rythm template for the WikiCMS approach
@import com.bitplan.smw.PropertyMap
@args() {
  String content,
  String lang,
  String title,
  PropertyMap smwprops; 
}
<!doctype html>
<html lang="@(lang)">
<head>
  <!-- https://de.wikipedia.org/wiki/Bootstrap_(Framework) -->
  <meta charset="utf-8"/>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>@(title)</title>
    <!-- Einbinden des Bootstrap-Stylesheets -->
    <link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css">

    <!-- optional: Einbinden der jQuery-Bibliothek -->
    <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.12.4.min.js"></script>

    <!-- optional: Einbinden der Bootstrap-JavaScript-Plugins -->
    <script src="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/bootstrap.min.js"></script>
  <style>
    body{
      margin: 2vw auto;
      max-width: 60em;
    }
    * {
      font-family: Arial, Helvetica, sans-serif;
    }
    header,footer{
      background-color: #FFFFFF;
      text-align: center;
    }
    footer {
      clear:both;
    }
    nav a:link,a:visited {
      text-decoration: none;
    }
    a:hover {	
      color: #FFFFFF;
      background-color: rgba(255,128,00,0.5);
    }
    main,article{
    }
    main {
      padding: 2vw;margin:1vw;
    }
    h1,h2,h3 {
      color: #FF8000;
    }
    .floatleft {
      float: left;
      margin: 1vw;
    }
    .floatright {
      float: right;
      margin: 1vw;
    }
    .logo {
      width: 6vw;	
      float:left;
    }
    .copyright {
      font-size: 0.5vw;
    }
    .imprint {
      font-size: 0.8vw;
    }
    ul li{
      margin-bottom:1vh;
    }

/** Language styles */

span.lang-de, span.lang-De {
	padding-right: 25px;
	background: url(http://wiki.bitplan.com/images/e/e7/Lang-De.gif) center right no-repeat;
}

span.lang-en, span.lang-En {
	padding-right: 25px;
	background: url(http://wiki.bitplan.com/images/7/78/Lang-En.gif) center right no-repeat;
}
  </style>
  </head>

<body>
    <header>
@{
  Object languageCodeObj=smwprops.get("_LCODE");
  String languageCode="de";
  if (languageCodeObj!=null) {
    languageCode=languageCodeObj.toString();
  }
}
  <a class='logo' href='http://training.bitplan.com/index.php/Willkommen'>
          <img src='http://wiki.bitplan.com/images/wiki/7/7a/BITPlanLogo2012FontLess.svg' width='100%'>
        </a>
    </header>
    <section class="container">
      <form class="form-horizontal" action="" method="post">
          <fieldset>
            <legend class="text-center">Contact us</legend>
    
            <!-- Name input-->
            <div class="form-group">
              <label class="col-md-3 control-label" for="name">Name</label>
              <div class="col-md-9">
                <input id="name" name="name" type="text" placeholder="Your name" class="form-control">
              </div>
            </div>
    
            <!-- Email input-->
            <div class="form-group">
              <label class="col-md-3 control-label" for="email">Your E-mail</label>
              <div class="col-md-9">
                <input id="email" name="email" type="text" placeholder="Your email" class="form-control">
              </div>
            </div>
    
            <!-- Message body -->
            <div class="form-group">
              <label class="col-md-3 control-label" for="message">Your message</label>
              <div class="col-md-9">
                <textarea class="form-control" id="message" name="message" placeholder="Please enter your message here..." rows="5"></textarea>
              </div>
            </div>
    
            <!-- Form actions -->
            <div class="form-group">
              <div class="col-md-12 text-right">
                <button type="submit" class="btn btn-primary btn-lg">Submit</button>
              </div>
            </div>
          </fieldset>
          </form>
    </section>
    <footer> 
      <nav>
         <span class='copyright'>© 2017&nbsp;
           <a href='http://www.bitplan.com'>BITPlan GmbH.</a>&nbsp;Alle Rechte vorbehalten.
         </span>
         &nbsp;
@if ("de".equals(languageCode)) {
         <span class='imprint'><a href='http://training.bitplan.com/index.php/Impressum'>Impressum</a></span>
} else {
         <span class='imprint'><a href='http://training.bitplan.com/index.php/Imprint'>Imprint</a></span>
}
      </nav>
    </footer>
  </body>
</html>