-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: Update the styling based on design (#94)
- Loading branch information
1 parent
507adeb
commit 6309b74
Showing
10 changed files
with
588 additions
and
90 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Third party developer support | ||
|
||
Aside from the [third party developer blog](/blog), there are number of other social and support resources available to you. | ||
|
||
It is important to distinguish needing support for specific third party applications, or for any of the services provided by CCP. If you need support for a third party application, you should contact the developer of that application directly. If you need support for any of the services provided by CCP, we have a number of resources available to you. | ||
|
||
The official [EVE Online discord](https://eveonline.com/discord) has a channel dedicated to third party development. You will find a number of third party developer hang out there as well. | ||
|
||
ESI has its own issues repository at [esi-issues](https://github.com/esi/esi-issues). From there you can raise issues or ask for new features | ||
|
||
If you have been banned from ESI, responses to your requests will point you to the EVE Online support system. Please follow the instructions. Circumventing the ban can result in further action being taken, up to and including a permanent ban for all of your accounts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{% extends "base.html" %} | ||
|
||
{% import "partials/language.html" as lang with context %} | ||
|
||
{% block scripts %} {{ super() }} | ||
<!-- Google Tag Manager (noscript) --> | ||
<noscript | ||
><iframe | ||
src="https://www.googletagmanager.com/ns.html?id={{ config.extra.analytics.property }}" | ||
height="0" | ||
width="0" | ||
style="display: none; visibility: hidden" | ||
></iframe | ||
></noscript> | ||
<!-- End Google Tag Manager (noscript) --> | ||
{% endblock %} | ||
|
||
|
||
{% block site_nav %} | ||
<!-- Navigation --> | ||
{% if nav %} | ||
{% if page.meta and page.meta.hide %} | ||
{% set hidden = "hidden" if "navigation" in page.meta.hide %} | ||
{% endif %} | ||
<div | ||
class="esi-sidebar md-sidebar md-sidebar--primary" | ||
data-md-type="navigation" | ||
{{ hidden }} | ||
> | ||
<div class="md-sidebar__scrollwrap"> | ||
<div class="md-sidebar__inner"> | ||
{% include "partials/nav.html" %} | ||
</div> | ||
</div> | ||
</div> | ||
{% endif %} | ||
|
||
<!-- Table of contents --> | ||
{% if "toc.integrate" not in features %} | ||
{% if page.meta and page.meta.hide %} | ||
{% set hidden = "hidden" if "toc" in page.meta.hide %} | ||
{% endif %} | ||
<div | ||
class="md-sidebar md-sidebar--secondary" | ||
data-md-type="toc" | ||
{{ hidden }} | ||
> | ||
<div class="md-sidebar__scrollwrap"> | ||
<div class="md-sidebar__inner"> | ||
{% include "partials/toc.html" %} | ||
</div> | ||
</div> | ||
</div> | ||
{% endif %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<footer class="md-footer esi-footer"> | ||
<div class="container"> | ||
<div class="wrapper"> | ||
<div class="title"> | ||
<div class="follow">{{ config.extra.footer.title }}</div> | ||
<div class="socials"> | ||
{% for social in config.extra.footer.socials %} | ||
<div class="social-{{ social.icon }}"> | ||
<a href="{{ social.url }}" target="_blank" rel="noopener"> | ||
{% include ".icons/fontawesome/brands/" + social.icon + ".svg" %} | ||
</a> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
{% for col in config.extra.footer.columns %} | ||
<div class="column"> | ||
<ul> | ||
<li>{{ col.title }}</li> | ||
{% for link in col.links %} | ||
<li> | ||
<a href="{{ link.url }}" target="_blank" rel="noopener" | ||
>{{ link.title }}</a | ||
> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{% import "partials/nav-item.html" as item with context %} | ||
|
||
<!-- Determine classes --> | ||
{% set class = "md-nav md-nav--primary" %} | ||
{% if "navigation.tabs" in features %} | ||
{% set class = class ~ " md-nav--lifted" %} | ||
{% endif %} | ||
{% if "toc.integrate" in features %} | ||
{% set class = class ~ " md-nav--integrated" %} | ||
{% endif %} | ||
|
||
<!-- Navigation --> | ||
<nav | ||
class="{{ class }}" | ||
aria-label="{{ lang.t('nav') }}" | ||
data-md-level="0" | ||
> | ||
|
||
<!-- Site title --> | ||
<label class="md-nav__title" for="__drawer"> | ||
<a | ||
href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}" | ||
title="{{ config.site_name | e }}" | ||
class="md-nav__button md-logo" | ||
aria-label="{{ config.site_name }}" | ||
data-md-component="logo" | ||
> | ||
{% include "partials/logo.html" %} | ||
</a> | ||
{{ config.site_name }} | ||
</label> | ||
|
||
<!-- Repository information --> | ||
{% if config.repo_url %} | ||
<div class="md-nav__source"> | ||
{% include "partials/source.html" %} | ||
</div> | ||
{% endif %} | ||
|
||
<!-- Navigation list --> | ||
<ul class="md-nav__list" data-md-scrollfix> | ||
{% for nav_item in nav %} | ||
{% set path = "__nav_" ~ loop.index %} | ||
{{ item.render(nav_item, path, 1) }} | ||
{% endfor %} | ||
</ul> | ||
</nav> |