|
14 | 14 | <div class="global-layout">
|
15 | 15 | {% include 'inc/header.html' %}
|
16 | 16 |
|
17 |
| - <section class="kotlin-overview-section _works-on"> |
18 |
| - <h2 class="section-header">Build Applications For</h2> |
19 |
| - <div class="works-on-list"> |
20 |
| - {%- set technologies = [ |
21 |
| - {'target': 'JVM', 'href': '/docs/reference/server-overview.html'}, |
22 |
| - {'target': 'Android', 'href': '/docs/reference/android-overview.html'}, |
23 |
| - {'target': 'Browser', 'href': '/docs/reference/js-overview.html'}, |
24 |
| - {'target': 'Native'} |
25 |
| - ]-%} |
26 |
| - |
27 |
| - {% for technology in technologies %} |
28 |
| - {% if(technology.href) %} |
29 |
| - <a href="{{ technology.href }}" class="works-on-item"> |
30 |
| - <div class="works-on-icon _{{ technology['target'].lower() }}"></div> |
31 |
| - <div class="works-on-text"> |
32 |
| - {{ technology['target'] }}<br/> |
33 |
| - </div> |
34 |
| - </a> |
35 |
| - {% else %} |
36 |
| - <div class="works-on-item"> |
37 |
| - <div class="works-on-icon _{{ technology['target'].lower() }}"></div> |
38 |
| - <div class="works-on-text"> |
39 |
| - {{ technology['target'] }}<br/>(soon) |
40 |
| - </div> |
41 |
| - </div> |
42 |
| - {% endif %} |
43 |
| - {% endfor %} |
44 |
| - </div> |
45 |
| - </section> |
46 |
| - |
47 | 17 | <section class="kotlin-overview-section _features">
|
48 | 18 | <h2 class="section-header">Why Kotlin?</h2>
|
49 | 19 | <div class="section-content">
|
@@ -77,6 +47,38 @@ <h3 class="feature-title">{{ feature.title }}</h3>
|
77 | 47 |
|
78 | 48 | </section>
|
79 | 49 |
|
| 50 | + <section class="kotlin-overview-section _works-on"> |
| 51 | + <h2 class="section-header">Build Applications For</h2> |
| 52 | + <div class="works-on-list"> |
| 53 | + {%- set technologies = [ |
| 54 | + {'target': 'JVM', 'href': '/docs/reference/server-overview.html'}, |
| 55 | + {'target': 'Android', 'href': '/docs/reference/android-overview.html'}, |
| 56 | + {'target': 'Browser', 'href': '/docs/reference/js-overview.html'}, |
| 57 | + {'target': 'Native'} |
| 58 | + ]-%} |
| 59 | + |
| 60 | + {% for technology in technologies %} |
| 61 | + {% if(technology.href) %} |
| 62 | + <a href="{{ technology.href }}" class="works-on-item"> |
| 63 | + <div class="works-on-icon _{{ technology['target'].lower() }}"></div> |
| 64 | + <div class="works-on-text"> |
| 65 | + {{ technology['target'] }}<br/> |
| 66 | + </div> |
| 67 | + </a> |
| 68 | + {% else %} |
| 69 | + <div class="works-on-item"> |
| 70 | + <div class="works-on-icon _{{ technology['target'].lower() }}"></div> |
| 71 | + <div class="works-on-text"> |
| 72 | + {{ technology['target'] }}<br/>(soon) |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + {% endif %} |
| 76 | + {% endfor %} |
| 77 | + </div> |
| 78 | + </section> |
| 79 | + |
| 80 | + |
| 81 | + |
80 | 82 | {# This fle conteins a lot of pre-formatted code. #}
|
81 | 83 | {% include 'inc/pages/index/code-examples.html' %}
|
82 | 84 |
|
|
0 commit comments