Advertisement
Guest User

divFeil

a guest
Nov 21st, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.26 KB | None | 0 0
  1. <div class="row move-down2">
  2. <div class=" col-xs-0 col-sm-0 col-md-3"></div>
  3. <div class=" col-xs-12 col-sm-12 col-md-6">
  4. <a href="/"> <img src="@routes.Assets.at("images/logo.png")"/></a>
  5. </div>
  6. </div>
  7.  
  8.  
  9. <div class="move-down jumbotron black2">
  10. <div class="row">
  11. <div class="col-xs-12 col-sm-6 col-md-5">
  12. <h4 class="white">Info</h4>
  13. <table class="table table-condensed white" id="table">
  14.                     <tbody>
  15.                     @if(divInfo.get(6) != ""){
  16.                         <tr>
  17.                             <td>Firmanavn</td>
  18.                             <th>@divInfo.get(6)</th>
  19.                         </tr>
  20.                         }
  21.                         <tr>
  22.                             <td>Stillingstype</td>
  23.                             <th>@for(i <- 0 until stilling.length) {
  24.                                 @Html(stilling.get(i))
  25.                                  <br>
  26.                         }</th>
  27.                         </tr>
  28.                         <tr>
  29.                             <td>Krevet utdanning</td>
  30.                             <th> @for(i <- 0 until linje.length) {
  31.                                 @Html(linje.get(i))
  32.                                  <br>
  33.                         }</th>
  34.                         </tr>
  35.                         <tr>
  36.                             <td>Krevet årstrinn</td>
  37.                             <th>@for(i <- 0 until trinn.length) {
  38.                                 @Html(trinn.get(i))
  39.                                  <br>
  40.                         }</th>
  41.                         </tr>
  42.                         @if(divInfo.get(2) != ""){
  43.                         <tr>
  44.                             <td>Arbeidssted</td>
  45.                             <th>@divInfo.get(2)</th>
  46.                         </tr>
  47.                         }
  48.                         @if(divInfo.get(7) != ""){
  49.                         <tr>
  50.                             <td>Varighet</td>
  51.                             <th>@divInfo.get(7) uker</th>
  52.                         </tr>
  53.                         }
  54.                         <tr>
  55.                             <td>Søknadsfrist</td>
  56.                             <th>@divInfo.get(3)</th>
  57.                         </tr>
  58.                         @if(divInfo.get(8) != "" || divInfo.get(9) != "" || divInfo.get(10) != ""){                        
  59.                     <tr>
  60.                             <td><h4 class="white">Kontakt</h4></td>
  61.                             <th></th>
  62.                         </tr>
  63.                         @if(divInfo.get(9) != ""){
  64.                         <tr>
  65.                             <td>Kontaktperson</td>
  66.                             <th>@divInfo.get(9)</th>
  67.                         </tr>
  68. }
  69.                         @if(divInfo.get(10) != ""){
  70.                         <tr>
  71.                             <td>Mail</td>
  72.                             <th>@divInfo.get(10)</th>
  73.                         </tr>
  74.                         }
  75.  
  76.                        
  77. @if(divInfo.get(8) != ""){
  78.                         <tr>
  79.                             <td>Url</td>
  80.                             <th><a href=@divInfo.get(8) style="color: #f66868; font-style: italic;">Søk stilling</a></th>
  81.                         </tr>
  82.                         }
  83.                         }
  84.                     </tbody>
  85.                 </table>
  86. </div>
  87. <div class="col-xs-12 col-sm-5 col-md-5" >
  88.  
  89.     <div class="white">
  90.     <h2>@divInfo.get(1)</h2>
  91.     <p5>@Html(info)</p5>
  92.     </div>
  93.  
  94. </div>
  95.  
  96. </div>
  97. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement