You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.4 KiB
62 lines
2.4 KiB
<div class="billboard--wrapper project-header--wrapper"> |
|
<div class="billboard--container"> |
|
<div class="container-fluid"> |
|
<div class="content--title"> |
|
{% if include.breadcrumbs %} |
|
{% capture bread %} |
|
[Projects]({{ site.projects_site_url }}) : {{ include.breadcrumbs }} |
|
{% endcapture %} |
|
{{ bread | markdownify }} |
|
{% endif %} |
|
</div> |
|
<div class="row-fluid"> |
|
<div class="span8"> |
|
<div class="project--links--container"> |
|
<a href="{{ site.github }}" class="project-link"> |
|
<i class="icon-github"></i> |
|
</a> |
|
<a href="{{ site.forum }}" class="project-link project-link-forum"> |
|
<i class="icon-comment-alt"></i> |
|
</a> |
|
</div> |
|
<div class="project--title">{{ site.name }}</div> |
|
|
|
<div class="project--description"> |
|
{{ include.description | markdownify }} |
|
</div> |
|
<a class="btn btn-black uppercase project-quickstart-btn" href="#quick-start">Quick Start</a> <!-- TODO: this button not working --> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="billboard-bg spring-data--bg"></div> |
|
</div> |
|
<div class="billboard-body--wrapper project-body--container"> |
|
<div class="row-fluid"> |
|
<div class="span8"> |
|
<div class="project-body--section"> |
|
{{ include.body | markdownify }} |
|
</div> |
|
<div class="project-body--section" id="quick-start"> |
|
|
|
<div class="row-fluid quickstart--container"> |
|
<div class="quickstart--header js-item-dropdown-widget--wrapper"> |
|
<div class="quickstart--title"> |
|
Download |
|
</div> |
|
<div data-quickstart-controls style="display: inline-block"></div> |
|
</div> |
|
<div class="quickstart--body"> |
|
The recommended way to get the code for this project is to use a dependency management system. The snippet below can be |
|
copied and pasted into your build when you create a new project, or when adding <code>{{ site.project }}</code> to your project. |
|
<div class="highlight"><button class="copy-button snippet" id="copy-button-2" data-clipboard-target="code-block-2"></button> |
|
<div class="js-quickstart-maven-widget"></div> |
|
</div> |
|
{{ include.quickstart | markdownify }} |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="span4">{% include right.html %}</div> |
|
</div> |
|
</div>
|
|
|