Skip to content

Commit c5e4dc4

Browse files
committed
Tidy up test article tables. Update default pages and main test article
1 parent 6b4e8a7 commit c5e4dc4

File tree

1 file changed

+25
-43
lines changed

1 file changed

+25
-43
lines changed

dotcom-rendering/src/server/dev-index.html

Lines changed: 25 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -20,42 +20,27 @@
2020
}
2121
.test-articles-list span {
2222
display: inline-block;
23-
width: 8em;
2423
line-height: 2em;
24+
margin-right: 2em;
2525
}
26-
.test-article-header span {
27-
font-weight: bold;
28-
}
29-
.test-article > span:nth-child(1),
30-
.test-article-header > span:nth-child(1) {
26+
.test-article > span:nth-child(1) {
3127
width: 14em !important;
3228
}
3329
</style>
3430
</head>
3531
<body>
36-
<h2>Default Endpoints</h2>
37-
38-
<form name="url-form">
39-
<input
40-
type="url"
41-
name="url-input"
42-
size="100"
43-
required
44-
placeholder="https://www.theguardian.com/money/2017/mar/10/ministers-to-criminalise-use-of-ticket-tout-harvesting-software"
45-
/>
46-
<input type="submit" value="Add" />
47-
</form>
32+
<h2>Pages</h2>
4833

4934
<ul id="default-endpoints">
5035
<li>
5136
<a
52-
href="/Article/https://www.theguardian.com/money/2017/mar/10/ministers-to-criminalise-use-of-ticket-tout-harvesting-software"
37+
href="/Article/https://www.theguardian.com/travel/2024/apr/03/walking-londons-unsung-river-nature-culture-and-moments-of-wonder-along-the-river-lea"
5338
>Article</a
5439
>
5540
</li>
5641
<li>
5742
<a
58-
href="/AppsArticle/https://www.theguardian.com/money/2017/mar/10/ministers-to-criminalise-use-of-ticket-tout-harvesting-software"
43+
href="/AppsArticle/https://www.theguardian.com/travel/2024/apr/03/walking-londons-unsung-river-nature-culture-and-moments-of-wonder-along-the-river-lea"
5944
>Apps Article</a
6045
>
6146
</li>
@@ -85,11 +70,22 @@ <h2>Default Endpoints</h2>
8570
<li>
8671
<a
8772
href="/EmailNewsletters/https://api.nextgen.guardianapps.co.uk/email-newsletters"
88-
>Email Newsletters page</a
73+
>Email Newsletters</a
8974
>
9075
</li>
9176
</ul>
9277

78+
<form name="url-form">
79+
<input
80+
type="url"
81+
name="url-input"
82+
size="100"
83+
required
84+
placeholder="https://www.theguardian.com/money/2017/mar/10/ministers-to-criminalise-use-of-ticket-tout-harvesting-software"
85+
/>
86+
<input type="submit" value="Add" />
87+
</form>
88+
9389
<section>
9490
<h2>Article Examples</h2>
9591

@@ -288,12 +284,9 @@ <h2>Article Examples</h2>
288284
<table>
289285
<thead>
290286
<tr>
291-
<th rowspan="2">Headline</th>
292-
<th rowspan="2">Description</th>
293-
<th rowspan="2">Format</th>
294-
<th colspan="3">Links</th>
295-
</tr>
296-
<tr>
287+
<th>Headline</th>
288+
<th>Description</th>
289+
<th>Format</th>
297290
<th>DEV</th>
298291
<th>CODE</th>
299292
<th>PROD</th>
@@ -379,23 +372,11 @@ <h2>Article Examples</h2>
379372

380373
<h2>Test Articles By Element</h2>
381374

382-
<div id="test-articles-by-element" class="test-articles-list">
383-
<div class="test-article-header">
384-
<span>type</span>
385-
<span>local</span>
386-
<span>production</span>
387-
</div>
388-
</div>
375+
<div id="test-articles-by-element" class="test-articles-list"></div>
389376

390377
<h2>Test Articles By Atom Type</h2>
391378

392-
<div id="test-articles-by-atom-type" class="test-articles-list">
393-
<div class="test-article-header">
394-
<span>type</span>
395-
<span>local</span>
396-
<span>production</span>
397-
</div>
398-
</div>
379+
<div id="test-articles-by-atom-type" class="test-articles-list"></div>
399380

400381
<h2>Test Articles By Element (Missing)</h2>
401382
<ul>
@@ -707,8 +688,9 @@ <h2>Test Articles By Element (Missing)</h2>
707688
const makeTestArticle = (a) => `
708689
<div class="test-article">
709690
<span>${a.name}</span>
710-
<span><a href="/Article/https://www.theguardian.com${a.article}">🔗</a> <a href="/Article/http://localhost:9000${a.article}">🔗(local FE)</a></span>
711-
<span><a href="https://www.theguardian.com${a.article}">example</a></span>
691+
<span><a href="/Article/https://www.theguardian.com${a.article}">local</a></span>
692+
<span><a href="/Article/http://localhost:9000${a.article}">local FE</a></span>
693+
<span><a href="https://www.theguardian.com${a.article}">prod</a></span>
712694
</div>
713695
`;
714696

0 commit comments

Comments
 (0)