Replace DEV with the community name... almost everywhere (#7211)
* chore: search and replace carefully * fix: small updates * fix: spec contains DEV hardcoded * chore: update on badges * feat: upcase
This commit is contained in:
parent
cbff423861
commit
c627f4e98a
41 changed files with 126 additions and 126 deletions
|
|
@ -11,7 +11,7 @@
|
|||
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
||||
|
||||
<meta name="twitter:site" content="@<%= SiteConfig.social_media_handles["twitter"] %>">
|
||||
<meta name="twitter:title" content="DEV => Search Results">
|
||||
<meta name="twitter:title" content="<%= community_name %> => Search Results">
|
||||
<meta name="twitter:description" content="<%= SiteConfig.community_description %>">
|
||||
<meta name="twitter:image:src" content="<%= SiteConfig.main_social_image %>">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
|
|
|
|||
|
|
@ -205,7 +205,7 @@
|
|||
<%= render "additional_content_boxes/article_box",
|
||||
article: @classic_article,
|
||||
classification: "classic",
|
||||
classification_text: "Classic DEV Post from #{@classic_article.readable_publish_date}",
|
||||
classification_text: "Classic #{community_name} Post from #{@classic_article.readable_publish_date}",
|
||||
follow_cue: "Follow <a href='#{@classic_article.user.path}'>@#{@classic_article.user.username}</a> to see more of their posts in your feed." %>
|
||||
<% end %>
|
||||
<div id="additional-content-area" data-article-id="<%= @article.id %>,<%= @classic_article&.id %>"></div>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<% title "DEV Connect 👩💻💬👨💻" %>
|
||||
<% title("#{community_name} Connect 👩💻💬👨💻") %>
|
||||
<%= content_for :page_meta do %>
|
||||
<link rel="canonical" href="<%= app_url("/connect") %>" />
|
||||
<meta name="description" content="DEV Connect">
|
||||
<meta name="description" content="<%= community_name %> Connect">
|
||||
<% end %>
|
||||
<%= csrf_meta_tags %>
|
||||
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
<%= f.date_field "expires_at", min: Date.tomorrow, max: @classified_listing.natural_expiration_date %>
|
||||
</div>
|
||||
<div class="field">
|
||||
<%= f.label "contact_via_connect", "Allow Users to Message Me Via In-App Chat (DEV Connect)" %>
|
||||
<%= f.label "contact_via_connect", "Allow Users to Message Me Via In-App Chat (#{community_name} Connect)" %>
|
||||
<%= f.check_box "contact_via_connect" %>
|
||||
</div>
|
||||
<% if @classified_listing.published %>
|
||||
|
|
|
|||
|
|
@ -9,10 +9,10 @@
|
|||
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
||||
<% if @displayed_classified_listing %>
|
||||
<meta property="og:title" content="<%= truncate @displayed_classified_listing.title, length: 54 %>">
|
||||
<meta property="og:description" content="DEV Listing" />
|
||||
<meta property="og:description" content="<%= community_name %> Listing" />
|
||||
<meta property="og:image" content="<%= listing_social_image_url @displayed_classified_listing %>">
|
||||
<meta name="twitter:title" content="<%= truncate @displayed_classified_listing.title, length: 54 %>">
|
||||
<meta name="twitter:description" content="DEV Listing">
|
||||
<meta name="twitter:description" content="<%= community_name %> Listing">
|
||||
<meta name="twitter:image:src" content="<%= listing_social_image_url @displayed_classified_listing %>">
|
||||
<% else %>
|
||||
<meta property="og:title" content="Listings" />
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
</button>
|
||||
</div>
|
||||
<div class="actions">
|
||||
<a href="/enter" id="cta-comment-register-now-link" class="register-now-cta" rel="nofollow">JOIN THE DEV COMMUNITY</a>
|
||||
<a href="/enter" id="cta-comment-register-now-link" class="register-now-cta" rel="nofollow">JOIN THE <%= community_qualified_name.upcase %></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -20,15 +20,15 @@
|
|||
<% if @root_comment.present? %>
|
||||
<link rel="canonical" href="<%= app_url(@root_comment.path) %>" />
|
||||
<meta property="og:url" content="<%= app_url(@root_comment.path) %>" />
|
||||
<meta property="og:title" content="<%= truncate(strip_tags(@root_comment.processed_html), length: 50) %> — DEV" />
|
||||
<meta name="twitter:title" content="<%= truncate(strip_tags(@root_comment.processed_html), length: 50) %> — DEV">
|
||||
<meta property="og:title" content="<%= truncate(strip_tags(@root_comment.processed_html), length: 50) %> — <%= community_name %>" />
|
||||
<meta name="twitter:title" content="<%= truncate(strip_tags(@root_comment.processed_html), length: 50) %> — <%= community_name %>">
|
||||
<meta property="og:image" content="<%= comment_social_image_url(@root_comment) %>" />
|
||||
<meta name="twitter:image:src" content="<%= comment_social_image_url(@root_comment) %>">
|
||||
<% else %>
|
||||
<link rel="canonical" href="<%= app_url("#{@commentable.path}/comments") %>" />
|
||||
<meta property="og:url" content="<%= app_url("#{@commentable.path}/comments") %>" />
|
||||
<meta property="og:title" content="[Discussion] <%= @commentable.title %> — DEV" />
|
||||
<meta name="twitter:title" content="[Discussion] <%= @commentable.title %> — DEV">
|
||||
<meta property="og:title" content="[Discussion] <%= @commentable.title %> — <%= community_name %>" />
|
||||
<meta name="twitter:title" content="[Discussion] <%= @commentable.title %> — <%= community_name %>">
|
||||
<% if @commentable.class.name == "Article" && @commentable.published %>
|
||||
<meta property="og:image" content="<%= article_social_image_url(@commentable) %>" />
|
||||
<meta name="twitter:image:src" content="<%= article_social_image_url(@commentable) %>">
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<% end %>
|
||||
</div>
|
||||
<script src="https://js.stripe.com/v3/"></script>
|
||||
<p class="hook-description">Credits are used for <a href="/listings">DEV listings</a> as well as upcoming products and services.</p>
|
||||
<p class="hook-description">Credits are used for <a href="/listings"><%= community_name %> listings</a> as well as upcoming products and services.</p>
|
||||
<div style="margin-top: 30px; text-align: center">
|
||||
<div class="credit-price" data-num="1">
|
||||
<div class="credit-amount" data-num="1">1+</div>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<% title "Dashboard - DEV" %>
|
||||
<% title("Dashboard - #{community_name}") %>
|
||||
|
||||
<div id="index-container"
|
||||
data-params="<%= params.to_json(only: %i[which per_page]) %>"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<% title "Dashboard - DEV" %>
|
||||
<% title("Dashboard - #{community_name}") %>
|
||||
|
||||
<div id="index-container"
|
||||
data-params="<%= params.to_json(only: %i[action per_page]) %>"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<% title "Dashboard - DEV" %>
|
||||
<% title("Dashboard - #{community_name}") %>
|
||||
|
||||
<div id="index-container"
|
||||
data-params="<%= params.to_json(only: %i[action per_page]) %>"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<% title "Dashboard - DEV" %>
|
||||
<% title("Dashboard - #{community_name}") %>
|
||||
|
||||
<div id="index-container"
|
||||
data-params="<%= params.to_json(only: %i[action per_page]) %>"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<% title "Dashboard - DEV" %>
|
||||
<% title("Dashboard - #{community_name}") %>
|
||||
|
||||
<div id="index-container"
|
||||
data-params="<%= params.to_json(only: %i[action per_page]) %>"
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@
|
|||
<span class="end utc"><%= event.ends_at.strftime("%d %B %Y %H:%M UTC") %></span>
|
||||
<span class="timezone">America/New_York</span>
|
||||
<span class="title"><%= event.title %></span>
|
||||
<span class="organizer">The DEV Community</span>
|
||||
<span class="organizer"><%= community_qualified_name %></span>
|
||||
<span class="organizer_email">members@dev.to</span>
|
||||
<span class="calname">dev-event</span>
|
||||
<span class="location"><%= event.location_url %></span>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<%= content_for :page_meta do %>
|
||||
<% title "DEV EVENTS" %>
|
||||
<% title("#{community_name} EVENTS") %>
|
||||
<link rel="canonical" href="<%= app_url("/events") %>" />
|
||||
<meta name="description" content="<%= community_name %> Events">
|
||||
<meta name="keywords" content="software development,engineering,rails,javascript,ruby">
|
||||
|
|
@ -23,11 +23,11 @@
|
|||
<div style="height:30px">
|
||||
</div>
|
||||
<div class="body">
|
||||
<img src="<%= asset_path "sustaining-membership.svg" %>" style="height:200px;margin-top:30px;" alt="DEV membership logo">
|
||||
<img src="<%= asset_path "sustaining-membership.svg" %>" style="height:200px;margin-top:30px;" alt="<%= community_name %> membership logo">
|
||||
<h1 style="font-size:1.9em;font-weight:600;text-align:center;">
|
||||
UPCOMING <br> EVENTS
|
||||
</h1>
|
||||
<p>DEV Events is a series of ongoing talks and workshops designed to cover important topics to help community members level up. Because we have a global community we will be hosting events at varying times so nobody is restricted by time zone. Additionally,
|
||||
<p><%= community_name %> Events is a series of ongoing talks and workshops designed to cover important topics to help community members level up. Because we have a global community we will be hosting events at varying times so nobody is restricted by time zone. Additionally,
|
||||
<strong>some workshops are repeated multiple times</strong> to further account for this.</p>
|
||||
<p>We have many more planned if you do not see a topic that interests you. Email
|
||||
<a href="mailto:members@dev.to">members@dev.to</a> to request a topic. And if you're interested in speaking, please
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<%= content_for :page_meta do %>
|
||||
<% title "#{@event.title} - DEV" %>
|
||||
<% title("#{@event.title} - #{community_name}") %>
|
||||
<link rel="canonical" href="<%= app_url("/#{@event.slug}") %>" />
|
||||
<meta name="description" content="dev.to | Events">
|
||||
<meta name="keywords" content="software development,engineering,rails,javascript,ruby">
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@
|
|||
<div class="form-check">
|
||||
<input name="article[boosted_dev_digest_email]" type="checkbox"
|
||||
<%= "checked" if article.boosted_dev_digest_email %>>
|
||||
<label>Boosted (DEV Digest)</label>
|
||||
<label>Boosted (<%= community_name %> Digest)</label>
|
||||
</div>
|
||||
|
||||
<% unless article.last_buffered %>
|
||||
|
|
|
|||
|
|
@ -82,9 +82,9 @@
|
|||
</div>
|
||||
<% else %>
|
||||
<div class="container" style="margin-top: 90px;">
|
||||
<h1 style="text-align: center">DEV Mods</h1>
|
||||
<h1 style="text-align: center"><%= community_name %> Mods</h1>
|
||||
<div class="body">
|
||||
<p>We periodically award some DEV members with heightened privileges to help moderate the community.</p>
|
||||
<p>We periodically award some <%= community_name %> members with heightened privileges to help moderate the community.</p>
|
||||
<p>Email <a href="mailto:<%= SiteConfig.default_site_email %>"><%= SiteConfig.default_site_email %></a> if you'd like to be considered right away.</p>
|
||||
<% unless user_signed_in? %>
|
||||
<p><em>P.S. You are not currently signed in.</em></p>
|
||||
|
|
|
|||
|
|
@ -19,20 +19,20 @@
|
|||
<ol type="a">
|
||||
<li>
|
||||
Permission is granted to temporarily download one copy of the materials
|
||||
(information or software) on DEV's web site for personal,
|
||||
(information or software) on <%= community_name %>'s web site for personal,
|
||||
non-commercial transitory viewing only. This is the grant of a license,
|
||||
not a transfer of title, and under this license you may not:
|
||||
|
||||
<ol type="i">
|
||||
<li>modify or copy the materials;</li>
|
||||
<li>use the materials for any commercial purpose, or for any public display (commercial or non-commercial);</li>
|
||||
<li>attempt to decompile or reverse engineer any software contained on DEV's web site;</li>
|
||||
<li>attempt to decompile or reverse engineer any software contained on <%= community_name %>'s web site;</li>
|
||||
<li>remove any copyright or other proprietary notations from the materials; or</li>
|
||||
<li>transfer the materials to another person or "mirror" the materials on any other server.</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>
|
||||
This license shall automatically terminate if you violate any of these restrictions and may be terminated by DEV at any time. Upon terminating your viewing of these materials or upon the termination of this license, you must destroy any downloaded materials in your possession whether in electronic or printed format.
|
||||
This license shall automatically terminate if you violate any of these restrictions and may be terminated by <%= community_name %> at any time. Upon terminating your viewing of these materials or upon the termination of this license, you must destroy any downloaded materials in your possession whether in electronic or printed format.
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
<ol type="a">
|
||||
<li>
|
||||
The materials on DEV's web site are provided "as is". DEV makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights. Further, DEV does not warrant or make any representations concerning the accuracy, likely results, or reliability of the use of the materials on its Internet web site or otherwise relating to such materials or on any sites linked to this site.
|
||||
The materials on <%= community_name %>'s web site are provided "as is". <%= community_name %> makes no warranties, expressed or implied, and hereby disclaims and negates all other warranties, including without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property or other violation of rights. Further, <%= community_name %> does not warrant or make any representations concerning the accuracy, likely results, or reliability of the use of the materials on its Internet web site or otherwise relating to such materials or on any sites linked to this site.
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
In no event shall DEV or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption,) arising out of the use or inability to use the materials on DEV's Internet site, even if DEV or an authorized representative has been notified orally or in writing of the possibility of such damage. Because some jurisdictions do not allow limitations on implied warranties, or limitations of liability for consequential or incidental damages, these limitations may not apply to you.
|
||||
In no event shall <%= community_name %> or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption,) arising out of the use or inability to use the materials on <%= community_name %>'s Internet site, even if <%= community_name %> or an authorized representative has been notified orally or in writing of the possibility of such damage. Because some jurisdictions do not allow limitations on implied warranties, or limitations of liability for consequential or incidental damages, these limitations may not apply to you.
|
||||
</p>
|
||||
|
||||
<h3 id="revisions-and-errata">
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
The materials appearing on DEV's web site could include technical, typographical, or photographic errors. DEV does not warrant that any of the materials on its web site are accurate, complete, or current. DEV may make changes to the materials contained on its web site at any time without notice. DEV does not, however, make any commitment to update the materials.
|
||||
The materials appearing on <%= community_name %>'s web site could include technical, typographical, or photographic errors. <%= community_name %> does not warrant that any of the materials on its web site are accurate, complete, or current. <%= community_name %> may make changes to the materials contained on its web site at any time without notice. <%= community_name %> does not, however, make any commitment to update the materials.
|
||||
</p>
|
||||
|
||||
<h3 id="links">
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
DEV has not reviewed all of the sites linked to its Internet web site and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by DEV of the site. Use of any such linked web site is at the user's own risk.
|
||||
<%= community_name %> has not reviewed all of the sites linked to its Internet web site and is not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement by <%= community_name %> of the site. Use of any such linked web site is at the user's own risk.
|
||||
</p>
|
||||
|
||||
<h3 id="copyright-takedown">
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
|
||||
<p>
|
||||
Users agree and certify that they have rights to share all content that they post on dev.to — including, but not limited to, information posted in articles, discussions, and comments. This rule applies to prose, code snippets, collections of links, etc. Regardless of citation, users may not post copy and pasted content that does not belong to them. Users assume all risk for the content they post, including someone else's reliance on its accuracy, claims relating to intellectual property, or other legal rights. If you believe that a user has plagiarized content, misrepresented their identity, misappropriated work, or otherwise run afoul of DMCA regulations, please email
|
||||
<a href="mailto:yo@dev.to">yo@dev.to</a>. DEV may remove any content users post for any reason.
|
||||
<a href="mailto:yo@dev.to">yo@dev.to</a>. <%= community_name %> may remove any content users post for any reason.
|
||||
</p>
|
||||
|
||||
<h3 id="site-terms-of-use-modifications">
|
||||
|
|
@ -84,15 +84,15 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
DEV may revise these terms of use for its web site at any time without notice. By using this web site you are agreeing to be bound by the then current version of these Terms and Conditions of Use.
|
||||
<%= community_name %> may revise these terms of use for its web site at any time without notice. By using this web site you are agreeing to be bound by the then current version of these Terms and Conditions of Use.
|
||||
</p>
|
||||
|
||||
<h3 id="dev-trademarks-and-logo-policy">
|
||||
9. DEV Trademarks and Logos Policy
|
||||
9. <%= community_name %> Trademarks and Logos Policy
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
All uses of the DEV logo, DEV badges, brand slogans, iconography, and the like, may only be used with express permission from DEV. DEV reserves all rights, even if certain assets are included in DEV open source projects. Please contact yo@dev.to with any questions or to request permission.
|
||||
All uses of the <%= community_name %> logo, <%= community_name %> badges, brand slogans, iconography, and the like, may only be used with express permission from <%= community_name %>. <%= community_name %> reserves all rights, even if certain assets are included in <%= community_name %> open source projects. Please contact yo@dev.to with any questions or to request permission.
|
||||
</p>
|
||||
|
||||
<h3 id="reserved-names">
|
||||
|
|
@ -100,11 +100,11 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
DEV has the right to maintain a list of reserved names which will not be made publicly available. These reserved names may be set aside for purposes of proactive trademark protection, avoiding user confusion, security measures, or any other reason (or no reason).
|
||||
<%= community_name %> has the right to maintain a list of reserved names which will not be made publicly available. These reserved names may be set aside for purposes of proactive trademark protection, avoiding user confusion, security measures, or any other reason (or no reason).
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Additionally, DEV reserves the right to change any already-claimed name at its sole discretion. In such cases, DEV will make reasonable effort to find a suitable alternative and assist with any transition-related concerns.
|
||||
Additionally, <%= community_name %> reserves the right to change any already-claimed name at its sole discretion. In such cases, <%= community_name %> will make reasonable effort to find a suitable alternative and assist with any transition-related concerns.
|
||||
</p>
|
||||
|
||||
<h3 id="content-policy">
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
The following policy applies to comments, articles, and all other works shared on the DEV platform:
|
||||
The following policy applies to comments, articles, and all other works shared on the <%= community_name %> platform:
|
||||
<ul><li>Users must make a good-faith effort to share content that is on-topic, of high-quality, and is not designed primarily for the purposes of promotion or creating backlinks.
|
||||
</li>
|
||||
<li>Posts must contain substantial content — they may not merely reference an external link that contains the full post.</li>
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
</p>
|
||||
|
||||
<p>
|
||||
DEV reserves the right to remove any content that it deems to be in violation of this policy at its sole discretion. Additionally, DEV reserves the right to restrict any user’s ability to participate on the platform at its sole discretion.
|
||||
<%= community_name %> reserves the right to remove any content that it deems to be in violation of this policy at its sole discretion. Additionally, <%= community_name %> reserves the right to restrict any user’s ability to participate on the platform at its sole discretion.
|
||||
</p>
|
||||
|
||||
<h3 id="governing-law">
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
</h3>
|
||||
|
||||
<p>
|
||||
Any claim relating to DEV's web site shall be governed by the laws of the State of New York without regard to its conflict of law provisions.
|
||||
Any claim relating to <%= community_name %>'s web site shall be governed by the laws of the State of New York without regard to its conflict of law provisions.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<title>DEV Community ❤️</title>
|
||||
<title><%= community_name %> Community ❤️</title>
|
||||
</head>
|
||||
<body>
|
||||
<%= @html_variant.html.html_safe %>
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
<% title "Add the DEV Badge to your personal site" %>
|
||||
<% title("Add the #{community_name} Badge to your personal site") %>
|
||||
|
||||
<%= content_for :page_meta do %>
|
||||
<link rel="canonical" href="<%= app_url("/p/badges") %>" />
|
||||
<meta name="description" content="Add the DEV Badge to your personal site">
|
||||
<meta name="description" content="Add the <%= community_name %> Badge to your personal site">
|
||||
<meta name="keywords" content="software development,engineering,rails,javascript,ruby">
|
||||
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="<%= app_url("/p/badges") %>" />
|
||||
<meta property="og:title" content="Add the DEV Badge to your personal site" />
|
||||
<meta property="og:title" content="Add the <%= community_name %> Badge to your personal site" />
|
||||
<meta property="og:image" content="https://thepracticaldev.s3.amazonaws.com/i/kjn1gduswyrrisc1basc.png" />
|
||||
<meta property="og:description" content="Show visitors that you are an active member of our wonderful community. Put the badge on your personal website or use it as you see fit." />
|
||||
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@<%= SiteConfig.social_media_handles["twitter"] %>">
|
||||
<meta name="twitter:title" content="Add the DEV Badge to your personal site">
|
||||
<meta name="twitter:title" content="Add the <%= community_name %> Badge to your personal site">
|
||||
<meta name="twitter:description" content="Show visitors that you are an active member of our wonderful community. Put the badge on your personal website or use it as you see fit.">
|
||||
<meta name="twitter:image:src" content="https://thepracticaldev.s3.amazonaws.com/i/kjn1gduswyrrisc1basc.png">
|
||||
<% end %>
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
<div class="container article">
|
||||
<div class="title">
|
||||
<h1>
|
||||
Add the DEV Badge to your personal site
|
||||
Add the <%= community_name %> Badge to your personal site
|
||||
</h1>
|
||||
</div>
|
||||
<div class="body">
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
<% if user_signed_in? %>
|
||||
<p>
|
||||
<a href="https://dev.to/<%= current_user.username %>">
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" alt="<%= current_user.name %>'s DEV Profile" height="30" width="30" class="dev-badge">
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" alt="<%= current_user.name %>'s <%= community_name %> Profile" height="30" width="30" class="dev-badge">
|
||||
</a>
|
||||
</p>
|
||||
<p>
|
||||
|
|
@ -46,15 +46,15 @@
|
|||
<pre class="embed-code">
|
||||
|
||||
<a href="https://dev.to/<%= current_user.username %>">
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" alt="<%= current_user.name %>'s DEV Profile" height="30" width="30">
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" alt="<%= current_user.name %>'s <%= community_name %> Profile" height="30" width="30">
|
||||
</a>
|
||||
</pre>
|
||||
<p>You can add the DEV badge via
|
||||
<p>You can add the <%= community_name %> badge via
|
||||
<b><a href="https://fontawesome.com/icons/dev?style=brands" target="_blank" rel="noopoener">Font Awesome</a></b> with this snippet:
|
||||
</p>
|
||||
<pre class="embed-code">
|
||||
<a href="https://dev.to/<%= current_user.username %>">
|
||||
<i class="fab fa-dev" title="<%= current_user.username %>'s DEV Profile"></i>
|
||||
<i class="fab fa-dev" title="<%= current_user.username %>'s <%= community_name %> Profile"></i>
|
||||
</a>
|
||||
</pre>
|
||||
<p>
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
</p>
|
||||
<% else %>
|
||||
<p>
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" height="30" width="30" alt="DEV badge" class="dev-badge">
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg" height="30" width="30" alt="<%= community_name %> badge" class="dev-badge">
|
||||
</p>
|
||||
<h2 style="text-align:center;">
|
||||
<a href="/enter">Log in to view your custom embed code</a>
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
<div class="body">
|
||||
<h2>Main Typography</h2>
|
||||
<p>Default font is set to 16px (fs-base). It should be standard in UI. Smaller and bigger font sizes should be used carefully with respect to good visual rythm between elements.</p>
|
||||
<p>XS size should be used as little as possible in edge cases. Even though it’s readable we could consider it not meeting DEV’s standards. So keep it for like “asterisk copy” etc.</p>
|
||||
<p>XS size should be used as little as possible in edge cases. Even though it’s readable we could consider it not meeting <%= community_name %>’s standards. So keep it for like “asterisk copy” etc.</p>
|
||||
<p>By default you should be using Regular font weight.</p>
|
||||
<p>Medium should be used to emphasize something but not make it as loud as Bold.</p>
|
||||
<p>Heavy should be used only for bigger title.</p>
|
||||
|
|
@ -133,7 +133,7 @@
|
|||
|
||||
<!-- font weights -->
|
||||
<p class="... fw-normal">...</p> <!-- default: regular -->
|
||||
<p class="... fw-medium">...</p>
|
||||
<p class="... fw-medium">...</p>
|
||||
<p class="... fw-bold">...</p>
|
||||
<p class="... fw-heavy">...</p>
|
||||
|
||||
|
|
@ -144,7 +144,7 @@
|
|||
|
||||
<div class="body">
|
||||
<h2>Accent typography</h2>
|
||||
<p>Its main purpose is to add a bit of flavor to DEV brand but it should never be the main font.</p>
|
||||
<p>Its main purpose is to add a bit of flavor to <%= community_name %> brand but it should never be the main font.</p>
|
||||
<p>Please, do not overuse Accent typography.</p>
|
||||
<p>We strongly encourage to limit number of sizes and weights to what presetned below.</p>
|
||||
</div>
|
||||
|
|
@ -450,7 +450,7 @@
|
|||
<div class="crayons-field crayons-field--checkbox">
|
||||
...
|
||||
</div>
|
||||
|
||||
|
||||
...
|
||||
</div>
|
||||
'.rstrip %></pre>
|
||||
|
|
@ -551,7 +551,7 @@
|
|||
<div class="crayons-field crayons-field--radio">
|
||||
...
|
||||
</div>
|
||||
|
||||
|
||||
...
|
||||
</div>
|
||||
'.rstrip %></pre>
|
||||
|
|
@ -678,7 +678,7 @@
|
|||
Hey, I'm a Large Modal content! Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi ea voluptates quaerat eos consequuntur temporibus.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div>
|
||||
<div class="crayons-modal crayons-modal--padding-0">
|
||||
Hey, I'm a modal content with no padding! Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi ea voluptates quaerat eos consequuntur temporibus.
|
||||
|
|
@ -700,7 +700,7 @@
|
|||
|
||||
<div class="... crayons-modal--padding-0">
|
||||
Hey, ...
|
||||
</div>
|
||||
</div>
|
||||
'.rstrip %></pre>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<% title "Privacy Policy for DEV" %>
|
||||
<% title("Privacy Policy for #{community_name}") %>
|
||||
|
||||
<%= content_for :page_meta do %>
|
||||
<link rel="canonical" href="<%= app_url("/privacy") %>" />
|
||||
|
|
@ -28,9 +28,9 @@
|
|||
</div>
|
||||
<div class="body">
|
||||
<p>Effective May 25, 2018</p>
|
||||
<p>This policy covers Dev Community Inc. (“DEV”).</p>
|
||||
<h3> What information DEV collects and Why </h3>
|
||||
<p>In order to give you the best possible experience using DEV, we collect information from your interactions with our network. We use common internet technologies, such as cookies and web server logs. We collect this basic information from everybody, whether they have an account or not.</p>
|
||||
<p>This policy covers Dev Community Inc. (“<%= community_name %>”).</p>
|
||||
<h3> What information <%= community_name %> collects and Why </h3>
|
||||
<p>In order to give you the best possible experience using <%= community_name %>, we collect information from your interactions with our network. We use common internet technologies, such as cookies and web server logs. We collect this basic information from everybody, whether they have an account or not.</p>
|
||||
<p>The information we collect about all visitors to our website includes:</p>
|
||||
<ul>
|
||||
<li>The visitor’s browser type</li>
|
||||
|
|
@ -40,26 +40,26 @@
|
|||
</ul>
|
||||
<p>We use this information to:</p>
|
||||
<ul>
|
||||
<li>Provide, test, improve, promote and personalize DEV Services</li>
|
||||
<li>Provide, test, improve, promote and personalize <%= community_name %> Services</li>
|
||||
<li>Fight spam and other forms of abuse</li>
|
||||
<li>Generate aggregate, non-identifying information about how people use DEV Services</li>
|
||||
<li>Generate aggregate, non-identifying information about how people use <%= community_name %> Services</li>
|
||||
</ul>
|
||||
<p>In order for you to create an account on DEV and use our Services, we need to collect and process certain information. Depending on your use of the Services, that may include:</p>
|
||||
<p>In order for you to create an account on <%= community_name %> and use our Services, we need to collect and process certain information. Depending on your use of the Services, that may include:</p>
|
||||
<ul>
|
||||
<li>Communications you send to us (for example, when you ask for support, send us questions or comments, or report a problem);</li>
|
||||
<li>Information that you submit on or to DEV in the form of reactions, comments, or messages to other users;</li>
|
||||
<li>The email address associated with your Twitter account, if you choose to sign up using your Twitter credentials. DEV will also request permission to access additional information (these permissions are governed by Twitter’s privacy policies and can be managed through your Twitter privacy settings). We never post anything to your Twitter without your permission.</li>
|
||||
<li>The email address associated with your GitHub account, if you choose to sign up using your Github credentials. DEV will also request permission to access additional information (these permissions are governed by GitHub’s privacy policies and can be managed through your GitHub privacy settings). We never post anything to your GitHub without your permission.</li>
|
||||
<li>Information that you submit on or to <%= community_name %> in the form of reactions, comments, or messages to other users;</li>
|
||||
<li>The email address associated with your Twitter account, if you choose to sign up using your Twitter credentials. <%= community_name %> will also request permission to access additional information (these permissions are governed by Twitter’s privacy policies and can be managed through your Twitter privacy settings). We never post anything to your Twitter without your permission.</li>
|
||||
<li>The email address associated with your GitHub account, if you choose to sign up using your Github credentials. <%= community_name %> will also request permission to access additional information (these permissions are governed by GitHub’s privacy policies and can be managed through your GitHub privacy settings). We never post anything to your GitHub without your permission.</li>
|
||||
<li>You also have the option to give us more information if you want to, and this may include “User Personal Information.”</li>
|
||||
</ul>
|
||||
<h3>Information Disclosure</h3>
|
||||
<p>We do not share, sell, rent, or trade User Personal Information with third parties for commercial purposes.
|
||||
<br>
|
||||
<br>
|
||||
We do share certain aggregated, non-personally identifying information with others about how our users, collectively, use DEV. For example, we may share information pertaining to the popularity of different programming languages for advertising partners.
|
||||
We do share certain aggregated, non-personally identifying information with others about how our users, collectively, use <%= community_name %>. For example, we may share information pertaining to the popularity of different programming languages for advertising partners.
|
||||
<br>
|
||||
<br>
|
||||
We do host first-party advertising on DEV. We do not run any code from advertisers and all ad images are hosted on managed DEV servers. For more details, see our section on Advertising Details.
|
||||
We do host first-party advertising on <%= community_name %>. We do not run any code from advertisers and all ad images are hosted on managed <%= community_name %> servers. For more details, see our section on Advertising Details.
|
||||
<br>
|
||||
<br>
|
||||
We may use User Personal Information with your permission, so we can perform services you have authorized. For example, if you indicate you are looking for work, we may contact you with opportunities.
|
||||
|
|
@ -95,20 +95,20 @@
|
|||
</p>
|
||||
<p><strong>Data Storage</strong>
|
||||
<br>
|
||||
DEV uses third-party vendors and hosting partners for hardware, software, networking, storage, and related technology we need to run DEV. By using DEV Services, you authorize DEV to transfer, store, and use your information in the United States and any other country where we operate. All service providers and third-party vendors are required to meet our data protection standards.
|
||||
<%= community_name %> uses third-party vendors and hosting partners for hardware, software, networking, storage, and related technology we need to run <%= community_name %>. By using <%= community_name %> Services, you authorize <%= community_name %> to transfer, store, and use your information in the United States and any other country where we operate. All service providers and third-party vendors are required to meet our data protection standards.
|
||||
</p>
|
||||
<p><strong>Site monitoring</strong>
|
||||
<br>
|
||||
DEV uses a variety of third-party services to diagnose errors and improve the performance of our site. We aim to minimize the amount of personal information shared, but the information may include your IP address or other identifying information. All service providers and third-party vendors are required to meet our data protection standards.
|
||||
<%= community_name %> uses a variety of third-party services to diagnose errors and improve the performance of our site. We aim to minimize the amount of personal information shared, but the information may include your IP address or other identifying information. All service providers and third-party vendors are required to meet our data protection standards.
|
||||
</p>
|
||||
<p><strong>Payment processing</strong>
|
||||
<br>
|
||||
DEV does not process payments directly — we rely on third-party services such as Stripe, Shopify, and Paypal to receive payments and store any payment information.
|
||||
<a href="https://shop.dev.to">The DEV Shop</a> is run through Shopify, a third-party e-commerce platform with their own Privacy Policy.
|
||||
<%= community_name %> does not process payments directly — we rely on third-party services such as Stripe, Shopify, and Paypal to receive payments and store any payment information.
|
||||
<a href="https://shop.dev.to">The <%= community_name %> Shop</a> is run through Shopify, a third-party e-commerce platform with their own Privacy Policy.
|
||||
</p>
|
||||
<p><strong>Third-Party Embeds</strong>
|
||||
<br>
|
||||
Some of the content that you see displayed on DEV is not hosted by DEV. These “embeds” are hosted by a third-party and embedded in DEV. For example: YouTube videos, Codepens, Twitter tweets, or GitHub code that appear within a DEV post. These files send data to the hosted site just as if you were visiting that site directly (for example, when you load a DEV post page with a YouTube video embedded in it, YouTube receives data about your activity). DEV does not control what data third parties collect in cases like this, or what they will do with it. Third-party embeds on DEV are not covered by this privacy policy; they are covered by the privacy policy of the third-party service. Be mindful when interacting with these services.
|
||||
Some of the content that you see displayed on <%= community_name %> is not hosted by <%= community_name %>. These “embeds” are hosted by a third-party and embedded in <%= community_name %>. For example: YouTube videos, Codepens, Twitter tweets, or GitHub code that appear within a <%= community_name %> post. These files send data to the hosted site just as if you were visiting that site directly (for example, when you load a <%= community_name %> post page with a YouTube video embedded in it, YouTube receives data about your activity). <%= community_name %> does not control what data third parties collect in cases like this, or what they will do with it. Third-party embeds on <%= community_name %> are not covered by this privacy policy; they are covered by the privacy policy of the third-party service. Be mindful when interacting with these services.
|
||||
</p>
|
||||
<p><strong>Facebook (visitor action pixel)</strong>
|
||||
<br>
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
We use browser cookies and similar technologies to recognize you when you return to our Services. Third-party vendors may also use cookies for various reasons.
|
||||
<br>
|
||||
<br>
|
||||
DEV uses a specific cookie in order to facilitate the use of Google Universal Analytics for users logged-in to the Applications or the Platforms (“Logged-In User). If you are a Logged-In User, DEV may use your DEV user ID in combination with Google Universal Analytics and Google Analytics to track and analyze the pages of the Services you visit. We do this only to better understand how you use the Website and the other Services, with a view to offering improvements for all DEV users; and to tailor our business and marketing activities accordingly, both generally and specifically to you. Google Analytics cookies do not provide DEV with any Personal Information.You can prevent Google Analytics from recognizing you on return visits to this site by disabling cookies on your browser.
|
||||
<%= community_name %> uses a specific cookie in order to facilitate the use of Google Universal Analytics for users logged-in to the Applications or the Platforms (“Logged-In User). If you are a Logged-In User, <%= community_name %> may use your <%= community_name %> user ID in combination with Google Universal Analytics and Google Analytics to track and analyze the pages of the Services you visit. We do this only to better understand how you use the Website and the other Services, with a view to offering improvements for all <%= community_name %> users; and to tailor our business and marketing activities accordingly, both generally and specifically to you. Google Analytics cookies do not provide <%= community_name %> with any Personal Information.You can prevent Google Analytics from recognizing you on return visits to this site by disabling cookies on your browser.
|
||||
<br>
|
||||
<br>
|
||||
You may opt-out of this feature by installing the Google Analytics Opt-out Browser Add-on, by setting your web browser to refuse cookies, or by setting your browser to alert you when cookies are being sent. If you do so, note that some parts of the Site may not function properly.
|
||||
|
|
@ -132,19 +132,19 @@
|
|||
<br>
|
||||
We use encryption (HTTPS/TLS) to protect data transmitted to and from our site. However, no data transmission over the Internet is 100% secure, so we can’t guarantee security. You use the Service at your own risk, and you’re responsible for taking reasonable measures to secure your account.
|
||||
</p>
|
||||
<p><strong>Administrative Emails from DEV</strong>
|
||||
<p><strong>Administrative Emails from <%= community_name %></strong>
|
||||
<br>
|
||||
Sometimes we’ll send you emails about your account, service changes or new policies. You can’t opt out of this type of “transactional” email (unless you delete your account).
|
||||
<br>
|
||||
<br>
|
||||
When you interact with a transactional email sent from DEV (such as opening an email or clicking on a particular link in an email), we may receive information about that interaction.
|
||||
When you interact with a transactional email sent from <%= community_name %> (such as opening an email or clicking on a particular link in an email), we may receive information about that interaction.
|
||||
</p>
|
||||
<p><strong>Non-administrative Emails from DEV</strong>
|
||||
<p><strong>Non-administrative Emails from <%= community_name %></strong>
|
||||
<br>
|
||||
Upon creating a DEV account, you will be opted into the DEV Newsletter and other non-administrative email. Your email address and user profile information may be stored by a third-party email provider such as MailChimp or Sendgrid. You can opt out of non-administrative emails such as digests, newsletters, and activity notifications through your account’s “Settings” page and at the link of the footer in any non-administrative email you receive from us.
|
||||
Upon creating a <%= community_name %> account, you will be opted into the <%= community_name %> Newsletter and other non-administrative email. Your email address and user profile information may be stored by a third-party email provider such as MailChimp or Sendgrid. You can opt out of non-administrative emails such as digests, newsletters, and activity notifications through your account’s “Settings” page and at the link of the footer in any non-administrative email you receive from us.
|
||||
<br>
|
||||
<br>
|
||||
When you interact with a non-administrative email sent from DEV (such as opening an email or clicking on a particular link in an email), we may receive information about that interaction.
|
||||
When you interact with a non-administrative email sent from <%= community_name %> (such as opening an email or clicking on a particular link in an email), we may receive information about that interaction.
|
||||
</p>
|
||||
<p><strong>Deleting Your Personal Information</strong>
|
||||
<br>
|
||||
|
|
|
|||
|
|
@ -1,21 +1,21 @@
|
|||
<% title "Terms of Use for The DEV Community" %>
|
||||
<% title("Terms of Use for the #{community_qualified_name}") %>
|
||||
|
||||
<%= content_for :page_meta do %>
|
||||
<link rel="canonical" href="<%= app_url("/terms") %>" />
|
||||
<meta name="description" content="Terms of Use for The DEV Community">
|
||||
<meta name="description" content="Terms of Use for the <%= community_qualified_name %>">
|
||||
<meta name="keywords" content="software development,engineering,rails,javascript,ruby">
|
||||
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:url" content="<%= app_url("/terms") %>" />
|
||||
<meta property="og:title" content="Terms of Use for The DEV Community" />
|
||||
<meta property="og:title" content="Terms of Use for the <%= community_qualified_name %>" />
|
||||
<meta property="og:image" content="<%= SiteConfig.main_social_image %>" />
|
||||
<meta property="og:description" content="<%= community_qualified_name %> is great!" />
|
||||
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@<%= SiteConfig.social_media_handles["twitter"] %>">
|
||||
<meta name="twitter:title" content="Terms of Use for The DEV Community">
|
||||
<meta name="twitter:description" content="The DEV Community is great!">
|
||||
<meta name="twitter:title" content="Terms of Use for the <%= community_qualified_name %>">
|
||||
<meta name="twitter:description" content="<%= community_qualified_name %> is great!">
|
||||
<meta name="twitter:image:src" content="<%= SiteConfig.main_social_image %>">
|
||||
<% end %>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<h1>Bronze Sponsorship</h1>
|
||||
|
||||
<p>
|
||||
Thank you for supporting the DEV Community! Here’s what to expect with a Bronze Sponsorship:
|
||||
Thank you for supporting the <%= community_name %> Community! Here’s what to expect with a Bronze Sponsorship:
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
🏆 Special flair on your organization profile page
|
||||
</h3>
|
||||
<p>
|
||||
As a Bronze sponsor, you will receive special flair that lives on your organization page. This visual cue will show the DEV Community and broader ecosystem that you are an important community supporter, providing a natural draw for increased engagement on the platform. And, of course, you’ll have bragging rights and company pride knowing that you’re supporting a wonderful community.
|
||||
As a Bronze sponsor, you will receive special flair that lives on your organization page. This visual cue will show the <%= community_name %> Community and broader ecosystem that you are an important community supporter, providing a natural draw for increased engagement on the platform. And, of course, you’ll have bragging rights and company pride knowing that you’re supporting a wonderful community.
|
||||
</p>
|
||||
<% if user_signed_in? %>
|
||||
<h3>Bronze sponsorship costs 100 credits/mo ($250 when purchased in bulk)</h3>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<h1>DevRel Consultation</h1>
|
||||
|
||||
The DEV team sees over 1000 new posts published every week to the platform. We track popular articles as part of our job. We will provide expert consultation with your editorial goals, and provide tactical advice on how to best leverage the DEV platform, helping your company to build a valuable and engaging rapport with the community.
|
||||
The <%= community_name %> team sees over 1000 new posts published every week to the platform. We track popular articles as part of our job. We will provide expert consultation with your editorial goals, and provide tactical advice on how to best leverage the <%= community_name %> platform, helping your company to build a valuable and engaging rapport with the community.
|
||||
</p>
|
||||
<h3>🤓 Weekly Notes</h3>
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<h4>What next?</h4>
|
||||
<h3>Create an Organization</h3>
|
||||
<p>
|
||||
<em>Organizations act as a publication and a way for your team to interact with DEV on behalf of the company</em>
|
||||
<em>Organizations act as a publication and a way for your team to interact with <%= community_name %> on behalf of the company</em>
|
||||
</p>
|
||||
<p>
|
||||
Come back to this page once you have created an organization. Only organization <em>admins</em> may purchase sponsorships.
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
</div>
|
||||
<% end %>
|
||||
<p>
|
||||
<em>Credits are your wallet for flexibly managing all your DEV partnerships.</em>
|
||||
<em>Credits are your wallet for flexibly managing all your <%= community_name %> partnerships.</em>
|
||||
</p>
|
||||
<p>
|
||||
Credits can be purchased via company credit card, and once in your account you can use them for different promotions.
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<%= hidden_field_tag(:organization_id, org.id) %>
|
||||
<%= hidden_field_tag(:level, level) %>
|
||||
<h4>Sponsorship message/brand instructions:</h4>
|
||||
<%= text_area_tag(:instructions, nil, placeholder: "Include brand guideline links and detailed instructions about the message you are trying to get across. DEV editors will use these guidelines contextually depending on sponsorship.") %>
|
||||
<%= text_area_tag(:instructions, nil, placeholder: "Include brand guideline links and detailed instructions about the message you are trying to get across. #{community_name} editors will use these guidelines contextually depending on sponsorship.") %>
|
||||
<button>Subscribe for <%= Sponsorship::CREDITS[level] %> credits</button>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
<%= hidden_field_tag(:organization_id, org.id) %>
|
||||
<%= hidden_field_tag(:level, level) %>
|
||||
<h4>Sponsorship message/brand instructions:</h4>
|
||||
<%= text_area_tag(:instructions, nil, placeholder: "Include brand guideline links and detailed instructions about the message you are trying to get across. DEV editors will use these guidelines contextually depending on sponsorship.") %>
|
||||
<%= text_area_tag(:instructions, nil, placeholder: "Include brand guideline links and detailed instructions about the message you are trying to get across. #{community_name} editors will use these guidelines contextually depending on sponsorship.") %>
|
||||
<% tag_sponsorships = org.sponsorships.unexpired.where(level: :tag) %>
|
||||
<% tag_sponsorships.find_each do |sponsorship| %>
|
||||
<div class="partner-explainer-notice">
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
<button>Add spend to your media sponsorship</button>
|
||||
<p style="font-size: 0.88em;">
|
||||
<em>
|
||||
Credits will be allotted flexibly use in DEV-produced podcasts, videos and other media content. You will be notified as it is being distributed.
|
||||
Credits will be allotted flexibly use in <%= community_name %>-produced podcasts, videos and other media content. You will be notified as it is being distributed.
|
||||
</em>
|
||||
</p>
|
||||
<% end %>
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
<%= hidden_field_tag(:level, level) %>
|
||||
<button>Sign Up for DevRel Consulting</button>
|
||||
<p style="font-size: 1.1em;">
|
||||
You will be contacted by the DEV team within one day of signing up for this service.
|
||||
You will be contacted by the <%= community_name %> team within one day of signing up for this service.
|
||||
</p>
|
||||
<% end %>
|
||||
<% end %>
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
👀 Dedicated homepage logo + tagline placement
|
||||
</h3>
|
||||
<p>
|
||||
Your company will receive prominent logo and tagline placement directly on the DEV homepage, where it will be seen by hundreds of thousands of unique visitors each month. This is the most prime real estate on the platform, dedicated just for our Gold sponsors.
|
||||
Your company will receive prominent logo and tagline placement directly on the <%= community_name %> homepage, where it will be seen by hundreds of thousands of unique visitors each month. This is the most prime real estate on the platform, dedicated just for our Gold sponsors.
|
||||
</p>
|
||||
<h3>
|
||||
🙌 Inclusion in our weekly newsletter, and the option to add a boosted article to every newsletter
|
||||
|
|
@ -37,7 +37,7 @@ It will also include a call-to-action to follow your organization directly in th
|
|||
🏆 Special flair on your organization profile page
|
||||
</h3>
|
||||
<p>
|
||||
As a Gold sponsor, you will receive special flair that lives on your organization page. This visual cue will show the DEV Community and broader ecosystem that you are an important community supporter, providing a natural draw for increased engagement on the platform. And, of course, you’ll have bragging rights and company pride knowing that you’re supporting a wonderful community.
|
||||
As a Gold sponsor, you will receive special flair that lives on your organization page. This visual cue will show the <%= community_name %> Community and broader ecosystem that you are an important community supporter, providing a natural draw for increased engagement on the platform. And, of course, you’ll have bragging rights and company pride knowing that you’re supporting a wonderful community.
|
||||
</p>
|
||||
<% unless user_signed_in? %>
|
||||
<h2>Email <a href="mailto:partners@dev.to">partners@dev.to</a> for pricing information</h2>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<h1>Media Sponsorship</h1>
|
||||
<p>
|
||||
DEV produces custom media, ranging from BaseCS to Byte Sized, with so much more planned. Contact us to be notified of opportunities to work with us on media campaigns!
|
||||
<%= community_name %> produces custom media, ranging from BaseCS to Byte Sized, with so much more planned. Contact us to be notified of opportunities to work with us on media campaigns!
|
||||
</p>
|
||||
<h3>
|
||||
✌️ Custom Collaborations
|
||||
|
|
@ -19,7 +19,7 @@ Sponsorship video insertion
|
|||
💕 Adjacent Marketing
|
||||
</h3>
|
||||
<p>
|
||||
As a media sponsor, your company will be included in all relevant sections around the content. For instance, in the DEV post, in social media postings, email announcements, etc.
|
||||
As a media sponsor, your company will be included in all relevant sections around the content. For instance, in the <%= community_name %> post, in social media postings, email announcements, etc.
|
||||
</p>
|
||||
<% unless user_signed_in? %>
|
||||
<h2>Email <a href="mailto:partners@dev.to">partners@dev.to</a> for pricing information</h2>
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
🏆 Special flair on your organization profile page
|
||||
</h3>
|
||||
<p>
|
||||
As a Silver sponsor, you will receive special flair that lives on your organization page. This visual cue will show the DEV Community and broader ecosystem that you are an important community supporter, providing a natural draw for increased engagement on the platform. And, of course, you’ll have bragging rights and company pride knowing that you’re supporting a wonderful community.
|
||||
As a Silver sponsor, you will receive special flair that lives on your organization page. This visual cue will show the <%= community_name %> Community and broader ecosystem that you are an important community supporter, providing a natural draw for increased engagement on the platform. And, of course, you’ll have bragging rights and company pride knowing that you’re supporting a wonderful community.
|
||||
</p>
|
||||
<% if user_signed_in? %>
|
||||
<h3>Silver sponsorship costs 500 credits/mo ($1,250 when purchased in bulk)</h3>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ Target your messaging with a tag sponsorship. This is a great way to increase y
|
|||
Placement on our tag overview page
|
||||
</h3>
|
||||
<p>
|
||||
Members of the DEV Community head to the dedicated tags page to explore new areas of the site, and to manage which tags they follow. Your company will be listed as a sponsor directly alongside the tag you support. This placement provides visibility to all members, even if they don’t directly engage within your tag.
|
||||
Members of the <%= community_name %> Community head to the dedicated tags page to explore new areas of the site, and to manage which tags they follow. Your company will be listed as a sponsor directly alongside the tag you support. This placement provides visibility to all members, even if they don’t directly engage within your tag.
|
||||
</p>
|
||||
<h3>
|
||||
Special flair on your organization profile page
|
||||
|
|
|
|||
|
|
@ -10,18 +10,18 @@
|
|||
<h1>Partner With <img src="<%= asset_path "rainbowdev.svg" %>" /> </h1>
|
||||
<h3>🚀 Reach</h3>
|
||||
<p>
|
||||
DEV serves millions of unique visitors per month. This highly-targeted developer audience is comprised of registered members (<%= number_with_delimiter(User.estimated_count) %>) and visitors from the open web — many of whom visit DEV as part of their daily routine. You may be interested in the <a href="https://www.similarweb.com/website/dev.to">public analytics available on SimilarWeb</a>.
|
||||
<%= community_name %> serves millions of unique visitors per month. This highly-targeted developer audience is comprised of registered members (<%= number_with_delimiter(User.estimated_count) %>) and visitors from the open web — many of whom visit <%= community_name %> as part of their daily routine. You may be interested in the <a href="https://www.similarweb.com/website/dev.to">public analytics available on SimilarWeb</a>.
|
||||
</p>
|
||||
<h3>❤️ Community</h3>
|
||||
<p>
|
||||
DEV is committed to maintaining an inclusive and constructive environment, and welcomes developers of all backgrounds and experience levels. We work with a large group of community moderators who help us uphold and enforce our <a href="https://dev.to/code-of-conduct">Code of Conduct</a>.
|
||||
<%= community_name %> is committed to maintaining an inclusive and constructive environment, and welcomes developers of all backgrounds and experience levels. We work with a large group of community moderators who help us uphold and enforce our <a href="https://dev.to/code-of-conduct">Code of Conduct</a>.
|
||||
</p>
|
||||
<h3>💎 Quality</h3>
|
||||
<p>
|
||||
DEV always prioritizes the user experience. Our community-oriented sponsorship offerings are hosted directly (no third-party tracking), and can even be disabled if a registered member chooses to do so. We work hard to ensure that sponsorships are natural and well-received.
|
||||
<%= community_name %> always prioritizes the user experience. Our community-oriented sponsorship offerings are hosted directly (no third-party tracking), and can even be disabled if a registered member chooses to do so. We work hard to ensure that sponsorships are natural and well-received.
|
||||
<h3>🤓 Expertise</h3>
|
||||
<p>
|
||||
DEV has experts on staff who will help you craft your message and coordinate your activities on the platform. We are focused on helping your company generate a mutually positive outcome with the community.
|
||||
<%= community_name %> has experts on staff who will help you craft your message and coordinate your activities on the platform. We are focused on helping your company generate a mutually positive outcome with the community.
|
||||
</p>
|
||||
|
||||
<div class="partnership-options">
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
🎤 Native shout-outs and video clip insertions
|
||||
</li>
|
||||
<li>
|
||||
✏ Creative consultation with the DEV Team
|
||||
✏ Creative consultation with the <%= community_name %> Team
|
||||
</li>
|
||||
</ul>
|
||||
<a class="partnership-option-cta" href="/partnerships/media-sponsor">Full Details</a>
|
||||
|
|
|
|||
|
|
@ -33,11 +33,11 @@
|
|||
<li>Searchable Pro History: Instant access to a repository of your entire reading history—for your own heightened reference.</li>
|
||||
</ul>
|
||||
<h3>👋 Access the Exclusive Areas</h3>
|
||||
<p>A pro membership gives you access to small pro groups that don't necessarily scale. Your pro membership immediately gives you access to <em>Editorial Groups</em> in DEV Connect. These are chat channels dedicated to peer-to-peer review of technical blog posts to help you make the most of your DEV presence.
|
||||
<p>A pro membership gives you access to small pro groups that don't necessarily scale. Your pro membership immediately gives you access to <em>Editorial Groups</em> in <%= community_name %> Connect. These are chat channels dedicated to peer-to-peer review of technical blog posts to help you make the most of your <%= community_name %> presence.
|
||||
<h3>🤝 Access the Trust-based features</h3>
|
||||
<p>While pro memberships will not give you preferential treatment in the feed algorithm (that would be a no-no), you will get skin-in-the-game based access to trust-based features where we can place your posts more quickly and effectively in areas where spam would otherwise inhibit us.
|
||||
<h3>🙌 Always Improving</h3>
|
||||
<p>Because this will be the landing destination for experimental and low scale features, you will always have the best and most interesting DEV features. We also plan to connect for exclusive deals on new and upcoming features on other platforms.
|
||||
<p>Because this will be the landing destination for experimental and low scale features, you will always have the best and most interesting <%= community_name %> features. We also plan to connect for exclusive deals on new and upcoming features on other platforms.
|
||||
|
||||
<% if @user %>
|
||||
<div class="partner-credits-explainer">
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<%= render "users/additional_authentication" %>
|
||||
|
||||
<h2>DEV API Keys</h2>
|
||||
<p>You can generate personal API keys to use for authentication with the DEV API. The API is still in early beta though. The <a href="https://docs.dev.to/api/">DEV API documentation</a> contains further information.</a></p>
|
||||
<h2><%= community_name %> API Keys</h2>
|
||||
<p>You can generate personal API keys to use for authentication with the <%= community_name %> API. The API is still in early beta though. The <a href="https://docs.dev.to/api/"><%= community_name %> API documentation</a> contains further information.</a></p>
|
||||
<h3>Generate a new Key</h3>
|
||||
<%= form_tag users_api_secrets_path, method: :post do %>
|
||||
<%= fields_for :api_secret do |api_secret| %>
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
<% end %>
|
||||
|
||||
<hr />
|
||||
<h3>Generate a personal blog from your DEV posts</h3>
|
||||
<h3>Generate a personal blog from your <%= community_name %> posts</h3>
|
||||
<div class="single-app-integration">
|
||||
<% if current_user.decorate.stackbit_integration? %>
|
||||
<h2>Connected to Stackbit <sup>beta</sup><img src="<%= asset_path("checkmark-green.svg") %>" /></h2>
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<% else %>
|
||||
<h2>Connect to Stackbit <sup>beta</sup></h2>
|
||||
<p>Automatically generate a self-hosted static blog feed from your DEV posts.</p>
|
||||
<p>Automatically generate a self-hosted static blog feed from your <%= community_name %> posts.</p>
|
||||
<p style="font-size: 1.1em"><strong><a href="/connecting-with-stackbit">Get Started</a></strong></p>
|
||||
<% end %>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="<%= user_url(@user) %>" />
|
||||
<meta property="og:title" content="<%= @user.name %> — DEV Profile" />
|
||||
<meta property="og:title" content="<%= @user.name %> — <%= community_name %> Profile" />
|
||||
<meta property="og:image" content="<%= user_social_image_url(@user) %>">
|
||||
<meta property="og:description" content="<%= @user.summary %>" />
|
||||
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@<%= SiteConfig.social_media_handles["twitter"] %>">
|
||||
<meta name="twitter:creator" content="@<%= @user.twitter_username %>">
|
||||
<meta name="twitter:title" content="<%= @user.name %> — DEV Profile">
|
||||
<meta name="twitter:title" content="<%= @user.name %> — <%= community_name %> Profile">
|
||||
<meta name="twitter:description" content="<%= @user.summary %>">
|
||||
<meta name="twitter:image:src" content="<%= user_social_image_url(@user) %>">
|
||||
<% if @stories.any? %>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<h4>
|
||||
<a href="https://<%= ApplicationConfig["APP_DOMAIN"] %>/<%= current_user.username %>" aria-label="Go to your profile page">
|
||||
<img src="https://d2fltix0v2e0sb.cloudfront.net/dev-badge.svg"
|
||||
alt="DEV badge"
|
||||
alt="<%= community_name %> badge"
|
||||
height="28" width="28"
|
||||
style="vertical-align:-7px;margin-right:4px;" class="dev-badge" />
|
||||
</a>
|
||||
Add the DEV badge to your personal site. <a href="/p/badges">Click here for the code</a>
|
||||
Add the <%= community_name %> badge to your personal site. <a href="/p/badges">Click here for the code</a>
|
||||
</h4>
|
||||
<%= form_for(@user) do |f| %>
|
||||
<div class="field">
|
||||
|
|
|
|||
|
|
@ -50,9 +50,9 @@
|
|||
|
||||
<div class="sub-field">
|
||||
<%= f.check_box :feed_referential_link %>
|
||||
<%= f.label :feed_referential_link, "Replace self-referential links with DEV-specific links" %>
|
||||
<%= f.label :feed_referential_link, "Replace self-referential links with #{community_name} %>-specific links" %>
|
||||
<div class="field-explainer">
|
||||
If you check this box, the post will automatically change any URLs included in the post to refer to the version of that article on DEV if available. This is primarily meant for folks migrating their entire blog onto DEV.
|
||||
If you check this box, the post will automatically change any URLs included in the post to refer to the version of that article on <%= community_name %> if available. This is primarily meant for folks migrating their entire blog onto <%= community_name %>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<%= content_for :page_meta do %>
|
||||
<% title "Videos" %>
|
||||
<% title("#{community_name} Videos") %>
|
||||
|
||||
<link rel="canonical" href="<%= app_url(request.path) %>" />
|
||||
<meta name="description" content="<%= SiteConfig.community_description %>">
|
||||
|
|
@ -9,19 +9,19 @@
|
|||
<meta property="og:url" content="<%= app_url(request.path) %>" />
|
||||
<meta property="og:title" content="<% title "Videos" %>" />
|
||||
<meta property="og:image" content="<%= SiteConfig.main_social_image %>">
|
||||
<meta property="og:description" content="All videos on DEV" />
|
||||
<meta property="og:description" content="All videos on <%= community_name %>" />
|
||||
<meta property="og:site_name" content="<%= community_qualified_name %>" />
|
||||
|
||||
<meta name="twitter:site" content="@<%= SiteConfig.social_media_handles["twitter"] %>">
|
||||
<meta name="twitter:title" content="<% title "Videos" %>">
|
||||
<meta name="twitter:description" content="All videos on DEV">
|
||||
<meta name="twitter:description" content="All videos on <%= community_name %>">
|
||||
<meta name="twitter:image:src" content="<%= SiteConfig.main_social_image %>">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<% end %>
|
||||
|
||||
<div class="home video-page-title" id="index-container" data-which="videos" data-params="<%= params.to_json(only: %i[tag username q]) %>">
|
||||
<header>
|
||||
<h1>DEV on Video</h1>
|
||||
<h1><%= community_name %> on Video</h1>
|
||||
</header>
|
||||
<div class="video-collection" id="video-collection">
|
||||
<% @video_articles.each do |video_article| %>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ RSpec.describe "Events", type: :request do
|
|||
describe "GET events" do
|
||||
it "returns index page" do
|
||||
get "/events"
|
||||
expect(response.body).to include("DEV EVENTS")
|
||||
expect(response.body).to include("#{community_name} EVENTS")
|
||||
expect(response.body).to include(event.title)
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ RSpec.describe "Videos", type: :request do
|
|||
describe "GET /videos" do
|
||||
it "shows video page" do
|
||||
get "/videos"
|
||||
expect(response.body).to include "DEV on Video"
|
||||
expect(response.body).to include "#{community_name} on Video"
|
||||
end
|
||||
|
||||
it "shows articles with video" do
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue