Skip to content

Commit e501dd6

Browse files
mikesurowiecheiskr
andauthored
fixes github#704, ES actions landing page not rendering (github#20399)
Co-authored-by: Kevin Heis <[email protected]>
1 parent eb0198e commit e501dd6

File tree

2 files changed

+1
-155
lines changed

2 files changed

+1
-155
lines changed

components/landing/GuideCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const GuideCard = ({ guide }: Props) => {
1313
className="Box color-shadow-medium height-full d-block hover-shadow-large no-underline color-text-primary p-5"
1414
href={guide.href}
1515
>
16-
<h2>{guide.title}</h2>
16+
<h2 dangerouslySetInnerHTML={{__html: guide.title}} />
1717
<p className="mt-2 mb-4 color-text-tertiary">{guide.intro}</p>
1818

1919
<footer className="d-flex">

translations/es-XL/content/actions/index.md

-154
Original file line numberDiff line numberDiff line change
@@ -47,157 +47,3 @@ children:
4747
- /hosting-your-own-runners
4848
- /reference
4949
---
50-
<!-- Article links -->
51-
<div class="d-flex gutter my-6 py-6">
52-
<div class="col-4">
53-
<div class="featured-links-heading pb-4">
54-
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.getting_started %}</h3>
55-
</div>
56-
<ul class="list-style-none">
57-
{% for link in featuredLinks.gettingStarted %}
58-
<li>{% include featured-link %}</li>
59-
{% endfor %}
60-
</ul>
61-
</div>
62-
<div class="col-4">
63-
<div class="featured-links-heading pb-4">
64-
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">{% data ui.toc.popular_articles %}</h3>
65-
</div>
66-
<ul class="list-style-none">
67-
{% for link in featuredLinks.popular %}
68-
<li>{% include featured-link %}</li>
69-
{% endfor %}
70-
</ul>
71-
</div>
72-
<div class="col-4">
73-
<div class="featured-links-heading pb-4">
74-
<h3 class="f5 text-normal text-mono underline-dashed color-gray-5">Administrar flujos de trabajo</h3>
75-
</div>
76-
<ul class="list-style-none">
77-
{% for link in featuredLinks.guide %}
78-
<li>{% include featured-link %}</li>
79-
{% endfor %}
80-
</ul>
81-
</div>
82-
</div>
83-
<!-- Featured resources -->
84-
<div class="d-flex gutter my-6 py-6 text-center flex-items-stretch">
85-
<a href="/actions/creating-actions" class="col-4 mx-3 d-block text-gray-dark no-underline hover-grow Box p-5 bg-gray-light">
86-
<div class="mb-4 d-flex flex-justify-center"><div class="circle p-3 bg-blue text-white">{% octicon "bookmark" width="24" %}</div></div>
87-
<h4>Crear acciones</h4>
88-
<p class="mb-0">Una guía completa para crear y compartir acciones con la comunidad.</p>
89-
</a>
90-
<a href="https://github.com/actions/starter-workflows" class="col-4 mx-3 d-block text-gray-dark no-underline hover-grow Box p-5 bg-gray-light">
91-
<div class="mb-4 d-flex flex-justify-center"><div class="circle p-3 bg-purple text-white">{% octicon "rocket" width="24" %}</div></div>
92-
<h4>Flujos de trabajo de inicio</h4>
93-
<p class="mb-0">Una colección de archivos de flujo de trabajo que te ayudan a iniciar con GitHub Actions.</p>
94-
</a>
95-
<a href="https://github.com/marketplace?type=actions" class="col-4 mx-3 d-block text-gray-dark no-underline hover-grow Box p-5 bg-gray-light">
96-
<div class="mb-4 d-flex flex-justify-center"><div class="circle p-3 bg-orange text-white">{% octicon "light-bulb" width="24" %}</div></div>
97-
<h4>GitHub Actions Marketplace</h4>
98-
<p class="mb-0">Explora las acciones de la comunidad y supercarga tu flujo de trabajo.</p>
99-
</a>
100-
</div>
101-
<!-- Code examples -->
102-
<div class="mt-6 pt-6">
103-
<h2 class="mb-2">Guías</h2>
104-
<div class="d-flex flex-wrap gutter">
105-
<div class="col-4 mb-4">
106-
<a class="Box d-block hover-grow no-underline text-gray-dark" href="/actions/guides/building-and-testing-nodejs">
107-
<div class="p-4">
108-
<h4>Crear y hacer pruebas en Node.js</h4>
109-
<p class="mt-2 mb-4">Utiliza GitHub Actions para impulsar la IC en tu aplicación de Node.js.</p>
110-
<div class="d-flex">
111-
<span class="IssueLabel text-white bg-blue mr-2">JavaScript/TypeScript</span>
112-
<span class="IssueLabel text-white bg-blue mr-2">IC</span>
113-
</div>
114-
</div>
115-
<footer class="border-top p-4 text-gray d-flex flex-items-center">
116-
{% octicon "workflow" class="flex-shrink-0" %}
117-
<span class="ml-2">/guides/building-and-testing-nodejs</span>
118-
</footer>
119-
</a>
120-
</div>
121-
<div class="col-4 mb-4">
122-
<a class="Box d-block hover-grow no-underline text-gray-dark" href="/actions/guides/building-and-testing-python">
123-
<div class="p-4">
124-
<h4>Crear y hacer pruebas en Python</h4>
125-
<p class="mt-2 mb-4">Utiliza GitHub Actions parai mpulsar la IC en tu aplicación de Python..</p>
126-
<div class="d-flex">
127-
<span class="IssueLabel text-white bg-blue mr-2">Python</span>
128-
<span class="IssueLabel text-white bg-blue mr-2">IC</span>
129-
</div>
130-
</div>
131-
<footer class="border-top p-4 text-gray d-flex flex-items-center">
132-
{% octicon "workflow" class="flex-shrink-0" %}
133-
<span class="ml-2">/guides/building-and-testing-python</span>
134-
</footer>
135-
</a>
136-
</div>
137-
<div class="col-4 mb-4">
138-
<a class="Box d-block hover-grow no-underline text-gray-dark" href="/actions/guides/building-and-testing-java-with-maven">
139-
<div class="p-4">
140-
<h4>Crear y hacer pruebas en Java con Mavern</h4>
141-
<p class="mt-2 mb-4">Utiliza GitHub Actions para impulsar la IC en tu proyecto de Java con Mavern.</p>
142-
<div class="d-flex">
143-
<span class="IssueLabel text-white bg-blue mr-2">Java</span>
144-
<span class="IssueLabel text-white bg-blue mr-2">IC</span>
145-
</div>
146-
</div>
147-
<footer class="border-top p-4 text-gray d-flex flex-items-center">
148-
{% octicon "workflow" class="flex-shrink-0" %}
149-
<span class="ml-2">/guides/building-and-testing-java-with-maven</span>
150-
</footer>
151-
</a>
152-
</div>
153-
<div class="col-4 mb-4">
154-
<a class="Box d-block hover-grow no-underline text-gray-dark" href="/actions/guides/building-and-testing-java-with-gradle">
155-
<div class="p-4">
156-
<h4>Crear y hacer pruebas en Java con Gradle</h4>
157-
<p class="mt-2 mb-4">Utiliza GitHub Actions para impulsar la IC en tu proyecto de Java con Gradle.</p>
158-
<div class="d-flex">
159-
<span class="IssueLabel text-white bg-blue mr-2">Java</span>
160-
<span class="IssueLabel text-white bg-blue mr-2">IC</span>
161-
</div>
162-
</div>
163-
<footer class="border-top p-4 text-gray d-flex flex-items-center">
164-
{% octicon "workflow" class="flex-shrink-0" %}
165-
<span class="ml-2">/guides/building-and-testing-java-with-gradle</span>
166-
</footer>
167-
</a>
168-
</div>
169-
<div class="col-4 mb-4">
170-
<a class="Box d-block hover-grow no-underline text-gray-dark" href="/actions/guides/building-and-testing-java-with-ant">
171-
<div class="p-4">
172-
<h4>Crear y hacer pruebas en Java con Ant</h4>
173-
<p class="mt-2 mb-4">Utiliza GitHub Actions para impulsar la IC en tu proyecto de Java con Ant.</p>
174-
<div class="d-flex">
175-
<span class="IssueLabel text-white bg-blue mr-2">Java</span>
176-
<span class="IssueLabel text-white bg-blue mr-2">IC</span>
177-
</div>
178-
</div>
179-
<footer class="border-top p-4 text-gray d-flex flex-items-center">
180-
{% octicon "workflow" class="flex-shrink-0" %}
181-
<span class="ml-2">/guides/building-and-testing-java-with-ant</span>
182-
</footer>
183-
</a>
184-
</div>
185-
<div class="col-4 mb-4">
186-
<a class="Box d-block hover-grow no-underline text-gray-dark" href="/actions/guides/publishing-nodejs-packages">
187-
<div class="p-4">
188-
<h4>Publicar paquetes de Node.js</h4>
189-
<p class="mt-2 mb-4">Utiliza GitHub Actions para subir tu paquete de Node.js a GitHub Packages o a npm.</p>
190-
<div class="d-flex">
191-
<span class="IssueLabel text-white bg-blue mr-2">Java</span>
192-
<span class="IssueLabel text-white bg-blue mr-2">IC</span>
193-
</div>
194-
</div>
195-
<footer class="border-top p-4 text-gray d-flex flex-items-center">
196-
{% octicon "workflow" class="flex-shrink-0" %}
197-
<span class="ml-2">/guides/publishing-nodejs-packages</span>
198-
</footer>
199-
</a>
200-
</div>
201-
</div>
202-
<a href="/actions/guides" class="btn btn-outline mt-4">Más guías {% octicon "arrow-right" %}</a>
203-
</div>

0 commit comments

Comments
 (0)