mirror of
https://github.com/remoteintech/remote-jobs
synced 2024-11-14 16:37:30 +00:00
a3612b2a5e
* added external link image and also added to build script * added target blank and external link icons in company page * added external link icon and update indentation * fixed children nodes have a element issue * updated validation html with new external url's * added internal and external url checking * updated test files with email _blank condtion excluded * Updating Upworthy and Intevity (twin technologies) (#973) * adding content for company * removing warning emoji from upworthy * Twin Technologies is Now Intevity * adding location * renaming & updating info * reorganizing * Removing double h * updating dependencies * Update scopic-software.md (#992) Added Office locations to scopic-software.md * Updated details for CoreOS (#1010) * Update README.md with coreos * Update coreos.md * Add Thorn (#1015) * Add Thorn to README * Add thorn.md company profile * Add Thorn remote status detail * Adding designcode (#994) * Update README.md * Create designcode.md * Update designcode.md * Update designcode.md * Update designcode.md * Update README.md * Update designcode.md * Update README.md * Update README.md * Update designcode.md * feature: add MongoDB company profile (#1003) * Adding company profile for Scandit (#1005) * Added profile for Scandit * Added link to the company profile for Scandit * Details company profile Sutherland (#1006) * Add more infos sutherland * Add profile infos for Sutherland * Added Interpersonal Frequency company info (#1013) * Added Interpersonal Frequency company info * Added region for Interpersonal Frequency in README.md * added mozzila (#1014) Co-authored-by: Marija <simicmariya@gmail.com> * Adding Hopper to list (#990) * adding Hopper to readme * adding hopper * fixing line break * fixing line issue in remote status * fixes * removing mozzila * Detail suse profile (#1007) * Update suse.md * Update README.md * Updated reg ex to accept urls without http or https Co-authored-by: Aiden Threadgoode <64971702+a-thread@users.noreply.github.com> Co-authored-by: danishirfannn <73023221+danishirfannn@users.noreply.github.com> Co-authored-by: Aadarsh Baid <baidaadarsh@gmail.com> Co-authored-by: amplifi <amplifi@users.noreply.github.com> Co-authored-by: snehaj27 <69983797+snehaj27@users.noreply.github.com> Co-authored-by: Adrienne Tacke <adriennetacke@users.noreply.github.com> Co-authored-by: Nitin Gupta <gniting@users.noreply.github.com> Co-authored-by: Simon Sassi <dualprodu@gmail.com> Co-authored-by: Oscar Montes <oscmcojc1@live.com.mx> Co-authored-by: mariyasimic <70208378+mariyasimic@users.noreply.github.com> Co-authored-by: Marija <simicmariya@gmail.com> Co-authored-by: ngutierrez31 <ngutierrez131@gmail.com>
58 lines
1.7 KiB
HTML
58 lines
1.7 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block pageTitle %}{{ company.name }}{% endblock %}
|
|
|
|
{% block pageContent %}
|
|
<h1 class="company-name">{{ company.name }}</h1>
|
|
|
|
<div class="section section-atAGlance">
|
|
<a
|
|
href="{{ company.websiteUrl }}"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{{ company.websiteText }}
|
|
<img style="vertical-align: text-top;" src="/assets/external-link.svg" width="16px" height="16px">
|
|
</a>
|
|
{% if company.shortRegion %}
|
|
<span role="separator"></span>
|
|
{{ company.shortRegion }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% for headingProperty, headingText in headingPropertyNames %}
|
|
{% if company.profileContent[ headingProperty ] %}
|
|
<div class="section section-{{ headingProperty }}">
|
|
<h2>{{ headingText }}</h2>
|
|
{{ company.profileContent[ headingProperty ]|safe }}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{# There are different "levels" of incomplete - if company.isIncomplete is
|
|
# true then this profile is "really" incomplete, with a warning icon and
|
|
# everything, so there is no point in showing this section.
|
|
#}
|
|
{% if missingHeadings.length and ! company.isIncomplete %}
|
|
<div class="section section-missingInfo">
|
|
<h2>Missing info</h2>
|
|
<p>
|
|
We're missing some information about this company! Here's what
|
|
else we need:
|
|
</p>
|
|
<ul>
|
|
{% for headingProperty in missingHeadings %}
|
|
<li>{{ headingPropertyNames[ headingProperty ] }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<p>
|
|
<strong>Want to help?</strong>
|
|
<a href="{{ editUrl }}" target="_blank" rel="noopener noreferrer">
|
|
Send us a pull request on GitHub <span style="vertical-align: text-top;"> <img src="/assets/external-link.svg" /> </span>
|
|
</a>
|
|
with your changes to this file!
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|