Update CSS, icons and links
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
72e82380ef
commit
17bb58d84e
2 changed files with 85 additions and 369 deletions
252
style.css
252
style.css
|
@ -1,252 +0,0 @@
|
||||||
@import url("inter/inter.css");
|
|
||||||
|
|
||||||
html *
|
|
||||||
{
|
|
||||||
font-family: Inter, Cantarell, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.name {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pfp {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
margin-top: 2cm;
|
|
||||||
}
|
|
||||||
|
|
||||||
.middle {
|
|
||||||
grid-area: middle;
|
|
||||||
width: 90vw;
|
|
||||||
max-width: 15cm;
|
|
||||||
}
|
|
||||||
|
|
||||||
.inner-grid {
|
|
||||||
display: grid;
|
|
||||||
align-items: center;
|
|
||||||
grid-template-columns: 3cm 1fr 3cm;
|
|
||||||
grid-template-areas:
|
|
||||||
'inner-left inner-middle inner-right'
|
|
||||||
}
|
|
||||||
|
|
||||||
.description {
|
|
||||||
font-size: 9pt;
|
|
||||||
margin-top: -0.3cm;
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-container {
|
|
||||||
display: grid;
|
|
||||||
justify-content: center;
|
|
||||||
grid-template-areas:
|
|
||||||
'left middle right'
|
|
||||||
}
|
|
||||||
|
|
||||||
.headerbutton {
|
|
||||||
border: none;
|
|
||||||
border-radius: 8px;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
text-decoration: none;
|
|
||||||
display: flex;
|
|
||||||
font-size: 14px;
|
|
||||||
font-weight: bold;
|
|
||||||
margin: 4px 2px;
|
|
||||||
padding-left: 0.3cm;
|
|
||||||
padding-right: 0.3cm;
|
|
||||||
cursor: pointer;
|
|
||||||
min-height: 35px;
|
|
||||||
transition-duration: 0.2s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
|
||||||
border-radius: 12px 12px 12px 12px;
|
|
||||||
box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.13);
|
|
||||||
margin-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.listaction {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr 1cm;
|
|
||||||
text-decoration: none;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 1.5cm;
|
|
||||||
}
|
|
||||||
|
|
||||||
.listinfo {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
text-decoration: none;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 1.5cm;
|
|
||||||
}
|
|
||||||
|
|
||||||
.separator {
|
|
||||||
max-width: 15cm;
|
|
||||||
height: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topbar {
|
|
||||||
position: fixed;
|
|
||||||
width: 100%;
|
|
||||||
height: 1.2cm;
|
|
||||||
top: 0px;
|
|
||||||
left: 0px;
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
.backbutton {
|
|
||||||
position: absolute;
|
|
||||||
border-radius:10px;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
text-decoration: none;
|
|
||||||
display: grid;
|
|
||||||
font-size: 14px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin: 0.1cm;
|
|
||||||
transition-duration: 0.2s;
|
|
||||||
width: 1cm;
|
|
||||||
height: 1cm;
|
|
||||||
}
|
|
||||||
|
|
||||||
.gtk-button-pill {
|
|
||||||
position: relative;
|
|
||||||
width: auto;
|
|
||||||
height: 44px;
|
|
||||||
border-radius: 22px;
|
|
||||||
background-color: rgba(53, 132, 228, 1);
|
|
||||||
color: white;
|
|
||||||
text-decoration: none;
|
|
||||||
font-weight: bold;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 0px;
|
|
||||||
padding: 0px 32px;
|
|
||||||
margin-bottom: 1cm;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #fafafa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-container {
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.headerbutton {
|
|
||||||
background-color: #EBEBEB;
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.headerbutton:hover {
|
|
||||||
background-color: #E0E0E0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.separator {
|
|
||||||
background-color: rgba(237, 237, 237, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.listaction {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.listinfo {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topbar {
|
|
||||||
background-color: rgba(255, 255, 255, 1);
|
|
||||||
border: 1px solid rgba(224, 224, 224, 1);
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.backbutton {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.backbutton:hover {
|
|
||||||
background-color: #DEDEDE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #222222;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.grid-container {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.headerbutton {
|
|
||||||
background-color: #4a4a4a;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.headerbutton:hover {
|
|
||||||
background-color: #595959;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
|
||||||
background-color: #363636;
|
|
||||||
}
|
|
||||||
|
|
||||||
.separator {
|
|
||||||
background-color: #232323;
|
|
||||||
}
|
|
||||||
|
|
||||||
.listaction {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.listinfo {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.topbar {
|
|
||||||
background-color: #303030;
|
|
||||||
border: 1px solid #1f1f1f;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.backbutton {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.backbutton:hover {
|
|
||||||
background-color: #3e3e3e;
|
|
||||||
}
|
|
||||||
}
|
|
162
work-others.html
162
work-others.html
|
@ -2,21 +2,21 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="preconnect" href="https://rsms.me/">
|
<link rel="preconnect" href="https://rsms.me/">
|
||||||
<link rel="stylesheet" href="../style.css">
|
<link rel="stylesheet" href="https://www.techtransthai.org/style.css">
|
||||||
<meta http-equiv="Content-Language" content="th">
|
<meta http-equiv="Content-Language" content="th">
|
||||||
<meta http-equiv="content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="content-Type" content="text/html; charset=UTF-8">
|
||||||
<meta name="description" content="Late Night Defender's profile">
|
<meta name="description" content="Late Night Defender's profile">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Other works</title>
|
<title>Other works</title>
|
||||||
<link rel="icon" type="image/png" href="../icons/ttt-org.png">
|
<link rel="icon" type="image/png" href="../icons/icon.png">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="topbar">
|
<div class="simple-topbar">
|
||||||
<a href="index.html" class="backbutton">
|
<a href="index.html" class="simple-topbar-backbutton">
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 0 16 16" width="16px"><path fill="currentColor" d="m 10.9375 0.996094 c -0.292969 0 -0.558594 0.128906 -0.742188 0.328125 l -6.671874 6.671875 l 6.671874 6.675781 c 0.011719 0.011719 0.023438 0.023437 0.035157 0.03125 c 0.179687 0.183594 0.429687 0.292969 0.707031 0.292969 h 1 v -1 c 0 -0.273438 -0.113281 -0.523438 -0.292969 -0.707032 c -0.011719 -0.007812 -0.019531 -0.019531 -0.035156 -0.03125 l -5.257813 -5.261718 l 5.292969 -5.292969 c 0.179688 -0.179687 0.292969 -0.429687 0.292969 -0.707031 v -1 z m 0 0"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" height="16px" viewBox="0 0 16 16" width="16px"><path fill="currentColor" d="m 10.9375 0.996094 c -0.292969 0 -0.558594 0.128906 -0.742188 0.328125 l -6.671874 6.671875 l 6.671874 6.675781 c 0.011719 0.011719 0.023438 0.023437 0.035157 0.03125 c 0.179687 0.183594 0.429687 0.292969 0.707031 0.292969 h 1 v -1 c 0 -0.273438 -0.113281 -0.523438 -0.292969 -0.707032 c -0.011719 -0.007812 -0.019531 -0.019531 -0.035156 -0.03125 l -5.257813 -5.261718 l 5.292969 -5.292969 c 0.179688 -0.179687 0.292969 -0.429687 0.292969 -0.707031 v -1 z m 0 0"/></svg>
|
||||||
</a>
|
</a>
|
||||||
<div style="display: flex; align-items:start; justify-content: center; margin-top: -0.3cm;">
|
<div style="display: flex; align-items:start; justify-content: center; margin-top: -0.25cm;">
|
||||||
<h4>Other works</h4>
|
<h4>Other works</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -27,137 +27,105 @@
|
||||||
<div class="middle">
|
<div class="middle">
|
||||||
|
|
||||||
<div class="list" style="margin-top: 1.5cm;">
|
<div class="list" style="margin-top: 1.5cm;">
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://gitlab.com/openLKB/openlkb.gitlab.io">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://forge.techtransthai.org/techtransthai/www.techtransthai.org">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Web development in plain HTML and CSS</p>
|
<p class="row-title">Web development in plain HTML and CSS</p>
|
||||||
<p class="description">openLKB Community</p>
|
<p class="row-subtitle">TechTransThai</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://codeberg.org/TechTransThai/www.techtransthai.org">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://www.techtransthai.org">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Web development in plain HTML and CSS</p>
|
<p class="row-title">On-premise and cloud hosting with Podman and systemd</p>
|
||||||
<p class="description">TechTransThai.org</p>
|
<p class="row-subtitle">TechTransThai</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.techtransthai.org">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://www.techtransthai.org">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>On-premise hosting with Podman and systemd</p>
|
<p class="row-title">Transactional email with Amazon SES and SMTP2GO</p>
|
||||||
<p class="description">TechTransThai.org</p>
|
<p class="row-subtitle">TechTransThai</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.techtransthai.org">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://blog.techtransthai.org">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Cloud hosting on Amazon EC2 with Podman and systemd</p>
|
<p class="row-title">TechTransThai Blog website using Hugo framework</p>
|
||||||
<p class="description">TechTransThai.org</p>
|
<p class="row-subtitle">TechTransThai</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.techtransthai.org">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://www.youtube.com/@FOSS4ChangeTH">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Transactional email with Amazon SES</p>
|
<p class="row-title">Tech videos related to open source software</p>
|
||||||
<p class="description">TechTransThai.org</p>
|
<p class="row-subtitle">TechTransThai FOSS4Change</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.techtransthai.org">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://little-lines.techtransthai.org/">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Transactional email with SMTP2GO</p>
|
<p class="row-title">Little Lines hosting</p>
|
||||||
<p class="description">TechTransThai.org</p>
|
<p class="row-subtitle">TechTransThai and OpenTech Thailand Community</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://compute4change.wordpress.com">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://commonvoice.mozilla.org/th/dashboard/stats">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Compute4Change website using Hugo framework</p>
|
<p class="row-title">10,000+ clips validated for Thai language</p>
|
||||||
<p class="description">TechTransThai.org - Compute4Change</p>
|
<p class="row-subtitle">Mozilla Common Voice</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.youtube.com/@FOSS4ChangeTH">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://www.openstreetmap.org/user/latenightdef">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Tech videos related to open source software</p>
|
<p class="row-title">20,000+ Map changes</p>
|
||||||
<p class="description">TechTransThai.org - FOSS4Change</p>
|
<p class="row-subtitle">OpenStreetMap</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://little-lines.techtransthai.org/">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://hosted.weblate.org/user/latenightdef">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>Little Lines hosting</p>
|
<p class="row-title">900+ Thai translations across multiple OSS projects</p>
|
||||||
<p class="description">openKMITL & OpenTech Thailand Community</p>
|
<p class="row-subtitle">Hosted Weblate</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
<div class="separator"></div>
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://commonvoice.mozilla.org/th/dashboard/stats">
|
<a style="text-decoration: none;" target="_blank" rel="noopener noreferrer" href="https://www.techtransthai.org">
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
<div class="row" style="margin-left: 0.5cm; ">
|
||||||
<div>
|
<div class="propertyrow">
|
||||||
<p>10,000+ clips validated for Thai language</p>
|
<p class="row-title">Reverse proxy server with Caddy and Caddyfile</p>
|
||||||
<p class="description">Mozilla Common Voice</p>
|
<p class="row-subtitle">TechTransThai</p>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
||||||
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="separator"></div>
|
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.openstreetmap.org/user/latenightdef">
|
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
|
||||||
<div>
|
|
||||||
<p>20,000+ Map changes</p>
|
|
||||||
<p class="description">OpenStreetMap</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
|
||||||
</a>
|
|
||||||
<div class="separator"></div>
|
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://hosted.weblate.org/user/latenightdef">
|
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
|
||||||
<div>
|
|
||||||
<p>900+ Thai translations across multiple OSS projects</p>
|
|
||||||
<p class="description">Hosted Weblate</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
|
||||||
</a>
|
|
||||||
<div class="separator"></div>
|
|
||||||
<a target="_blank" rel="noopener noreferrer" class="listaction" href="https://www.techtransthai.org">
|
|
||||||
<div style="display: flex; margin-left: 0.5cm; margin-top: -0.4cm; margin-bottom: -0.2cm; align-items: center; justify-content: left">
|
|
||||||
<div>
|
|
||||||
<p>Reverse proxy server with Caddy and Caddyfile</p>
|
|
||||||
<p class="description">TechTransThai.org</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<svg class="feather feather-external-link" viewBox="0 0 24 24" fill="none" height="20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" x2="21" y1="14" y2="3"></line></svg>
|
|
||||||
</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue