-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
executable file
·119 lines (89 loc) · 3.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
---
layout: default
title: Smartling Help
latest-updates:
- title: SubRip SRT files
link: /developers/files/subrip-srt/
- title: URL Translation
link: /knowledge-base/articles/url-translation/
- title: Eloqua Connector
link: /knowledge-base/articles/eloqua-connector/
- title: Cost Estimates and Rates
link: /knowledge-base/articles/cost-estimates-and-rates/
---
<!-- Home Page Content -->
<div class="search-main">
<div class="search-bar-home">
<div class="container">
<div class="home-search-left">
<span class="search-icon"></span>
<input id="help-search" class="search-input st-default-search-input" placeholder="Search Smartling Help...">
</div>
<div class="home-search-right">
<a href="https://dashboard.smartling.com"><i class="fa fa-user"></i>Login</a>
<a href="http://status.smartling.com/"><i class="fa fa-info-circle"></i>Status</a>
</div>
</div>
</div>
</div>
<div class="container page">
<div class="row content-start-homepage">
<div class="home-section col-md-6 match-height">
<h2>Get Started with Smartling</h2>
<ul>
<li><a href="/knowledge-base/articles/getting-started-with-translation/">Translators</a></li>
<li><a href="/knowledge-base/articles/get-started-with-smartling/">Account Owners</a></li>
<li><a href="/developers/">Developers</a></li>
</ul>
</div>
<div class="home-section col-md-6 match-height">
<h2>Latest Documentation Updates</h2>
<ul>
{% for latest-update in page.latest-updates %}
<li><a href="{{latest-update.link}}">{{latest-update.title}}</a></li>
{% endfor %}
</ul>
</div>
<div class="home-section col-md-6 match-height">
<h2>Release Notes</h2>
<ul>
{% assign notes = site.data.releasenotes %}
{% for note in notes limit: 6 %}
<div class="row release-note">
<div class="col-sm-2">{{note.date}}</div>
<div class="col-sm-10">{{note.update_markdown | markdownify}}</div>
</div>
{% endfor %}
<div class="row release-note">
<div class="col-sm-2"></div>
<div class="col-sm-10"><a href="/release-notes">See all release notes</a></div>
</div>
</ul>
</div>
<div class="home-section col-md-6 match-height">
<h2>Product Blog</h2>
<ul>
{% for post in site.posts limit: 6 %}
<div class="row">
<div class="col-sm-2">{{post.date | date: "%m/%d/%y" }}</div>
<div class="col-sm-10"><a href="{{post.url}}">{{post.title}}</a></div>
</div>
<!-- <li><a href="{{post.url}}">{{post.title}}</a></li> -->
{% endfor %}
</ul>
</div>
<div class="home-section col-md-6 match-height">
<h2>Submit a Ticket</h2>
<ul>
<p>Have a question or a problem? <a href="https://support.smartling.com/hc/en-us/requests/new" target="_blank">Send us a ticket</a> and we’ll start working on a solution immediately.</p>
</ul>
</div>
<div class="home-section col-md-6">
<h2>Newsletter</h2>
<ul>
<p><a href="/manage-subscriptions">Signup</a> to receive regular updates from Smartling about new features, updates, bug fixes.</p>
</ul>
</div>
</div>
</div>
<p><br><br><br><br><br><br></p>